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

24 lines
908 B
Plaintext
Raw Normal View History

2015-09-15 07:46:09 -07:00
System.print(true == true) // expect: true
System.print(true == false) // expect: false
System.print(false == true) // expect: false
System.print(false == false) // expect: true
2013-11-07 07:04:25 -08:00
// Not equal to other types.
2015-09-15 07:46:09 -07:00
System.print(true == 1) // expect: false
System.print(false == 0) // expect: false
System.print(true == "true") // expect: false
System.print(false == "false") // expect: false
System.print(false == "") // expect: false
2013-11-07 07:04:25 -08:00
2015-09-15 07:46:09 -07:00
System.print(true != true) // expect: false
System.print(true != false) // expect: true
System.print(false != true) // expect: true
System.print(false != false) // expect: false
2013-11-07 07:04:25 -08:00
// Not equal to other types.
2015-09-15 07:46:09 -07:00
System.print(true != 1) // expect: true
System.print(false != 0) // expect: true
System.print(true != "true") // expect: true
System.print(false != "false") // expect: true
System.print(false != "") // expect: true