progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 10 Oct 2022 15:15:15 +0100
changeset 888 fc812b8f120f
parent 824 284ac979f289
permissions -rw-r--r--
texupdate

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