progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 02 Oct 2025 08:46:35 +0100
changeset 997 d7dfa3cf527f
parent 824 284ac979f289
permissions -rw-r--r--
updated

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