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

4 lines
91 B
Chapel
Raw Permalink Normal View History

2026-04-30 12:34:36 -04:00
class C { };
var c : owned C?; // is nil
writeln(if c == nil then "nil" else "something");