Files
wren/test/core/bool/not.wren
T

4 lines
118 B
Plaintext
Raw Normal View History

System.print(!true) // expect: false
System.print(!false) // expect: true
System.print(!!true) // expect: true