Introspection: Difference between revisions

m
→‎{{header|zkl}}: fix bare tag
(Rename Perl 6 -> Raku, alphabetize, minor clean-up)
m (→‎{{header|zkl}}: fix bare tag)
Line 2,331:
{{out}}<pre>123</pre>
The concept of global vars doesn't really exist, only instance data.
<lang zkl>var n=3, x=1.0, a=5, z="zoo";
self.vars; --> L(L("a",5),L("n",3),L("x",1),L("z","zoo"))
sum:=self.vars.reduce(fcn(p,[(nm,v)],r){
Anonymous user