RosettaCodeData/Task/Null-object/Langur/null-object.langur
2024-07-13 15:19:22 -07:00

9 lines
150 B
Text

var x, y = true, null
writeln x == null
writeln y == null
writeln x ==? null
writeln y ==? null
# null not a "truthy" result
writeln if(null: 0; 1)