13 lines
155 B
Text
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
|