Null object: Difference between revisions

→‎{{header|C sharp|C#}}: add chapel version
No edit summary
(→‎{{header|C sharp|C#}}: add chapel version)
Line 182:
// Console.WriteLine(name);
//}</lang>
 
=={{header|Chapel}}==
 
Objects variables without an initializer expression will be initiallized to nil:
<lang chapel>class C { };
var c:C; // is nil</lang>
 
=={{header|Clojure}}==
42

edits