mirror of
https://github.com/MorizzG/rlox.git
synced 2025-12-06 12:22:42 +00:00
13 lines
285 B
Lox
13 lines
285 B
Lox
|
|
print !true; // expect: false
|
||
|
|
print !false; // expect: true
|
||
|
|
print !!true; // expect: true
|
||
|
|
|
||
|
|
print !123; // expect: false
|
||
|
|
print !0; // expect: false
|
||
|
|
|
||
|
|
print !nil; // expect: true
|
||
|
|
|
||
|
|
print !""; // expect: false
|
||
|
|
|
||
|
|
fun foo() {}
|
||
|
|
print !foo; // expect: false
|