progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Sun, 01 Oct 2023 10:57:32 +0100
changeset 931 c9d6b50345d7
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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