progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Sat, 04 Nov 2023 18:28:09 +0000
changeset 952 f09d9db4e922
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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