progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Fri, 13 Oct 2023 23:49:34 +0100
changeset 941 38456acd29f3
parent 824 fb5462a350b1
permissions -rw-r--r--
added complement note

n := 0;
if (n == 0) && (n == 1) then {
    write "yes"
} else {
    write "no"
}