rlox/interpreter/tests/lox/bool/not.lox

3 lines
97 B
Lox
Raw Normal View History

2024-09-01 19:15:55 +02:00
print !true; // expect: false
print !false; // expect: true
print !!true; // expect: true