3 lines
91 B
Chapel
3 lines
91 B
Chapel
class C { };
|
|
var c : owned C?; // is nil
|
|
writeln(if c == nil then "nil" else "something");
|