mirror of
https://github.com/MorizzG/MLox.git
synced 2025-12-06 12:32:41 +00:00
8 lines
223 B
Lox
8 lines
223 B
Lox
|
|
// False and nil are false.
|
||
|
|
print false or "ok"; // expect: ok
|
||
|
|
print nil or "ok"; // expect: ok
|
||
|
|
|
||
|
|
// Everything else is true.
|
||
|
|
print true or "ok"; // expect: true
|
||
|
|
print 0 or "ok"; // expect: 0
|
||
|
|
print "s" or "ok"; // expect: s
|