RosettaCodeData/Task/Null-object/Chapel/null-object.chapel

4 lines
82 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class C { };
var c:C; // is nil
writeln(if c == nil then "nil" else "something");