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

4 lines
82 B
Text
Raw Permalink Normal View History

2013-10-27 22:24:23 +00:00
class C { };
var c:C; // is nil
writeln(if c == nil then "nil" else "something");