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

10 lines
156 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
val .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)