255 B
255 B
| title | date | draft | snippet_types | |
|---|---|---|---|---|
| describing a raku variable | 2021-10-15T18:04:19+04:00 | false |
|
My go to way to figure out what I'm working with in Raku.
my $res = cool_thing();
say $res.WHAT;
say $res.^attributes;
say $res;