progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 30 Aug 2021 15:39:43 +0100
changeset 828 a7d21029bb13
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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