progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Fri, 03 Oct 2025 10:10:33 +0100
changeset 997 a4212e8bdcad
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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