5 lines
153 B
Text
5 lines
153 B
Text
|
|
class Empty{};
|
||
|
|
var e = Empty(); # create a new class instance
|
||
|
|
e{:foo} = 42; # add variable 'foo'
|
||
|
|
say e{:foo}; # print the value of 'foo'
|