progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 26 Oct 2023 14:30:20 +0100
changeset 945 5070392a1bd7
parent 824 284ac979f289
permissions -rw-r--r--
updated

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