progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 10 Oct 2022 15:07:31 +0100
changeset 887 67d6615fa6e3
parent 824 fb5462a350b1
permissions -rw-r--r--
texupdated

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