RosettaCodeData/Task/Null-object/Langur/null-object.langur

10 lines
150 B
Text
Raw Permalink Normal View History

2024-07-13 15:19:22 -07:00
var x, y = true, null
2023-07-01 11:58:00 -04:00
2024-07-13 15:19:22 -07:00
writeln x == null
writeln y == null
writeln x ==? null
writeln y ==? null
2023-07-01 11:58:00 -04:00
# null not a "truthy" result
writeln if(null: 0; 1)