progs/while-tests/or.while
author Christian Urban <christian.urban@kcl.ac.uk>
Thu, 20 Jan 2022 08:58:38 +0000
changeset 868 b0acb8741b16
parent 824 fb5462a350b1
permissions -rw-r--r--
updated to Doubles trhoughout

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