progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 10 Nov 2022 23:49:29 +0000
changeset 896 b7a6436c7758
parent 824 284ac979f289
permissions -rw-r--r--
updated

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