9 lines
150 B
Text
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)
|