progs/while-tests/and.while
author Christian Urban <christian.urban@kcl.ac.uk>
Mon, 02 Oct 2023 23:10:56 +0100
changeset 935 3fb9b05465dd
parent 824 fb5462a350b1
permissions -rw-r--r--
updated

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