RosettaCodeData/Task/Boolean-values/GAP/boolean-values.gap
2023-07-01 13:44:08 -04:00

13 lines
155 B
Text

1 < 2;
# true
2 < 1;
# false
# GAP has also the value fail, which cannot be used as a boolean but may be used i$
1 = fail;
# false
fail = fail;
# true