add the old snippet md files
This commit is contained in:
parent
fc0dd204c7
commit
bcf8313a4b
110 changed files with 3048 additions and 0 deletions
17
old_snippets/describe-raku-variable.en.md
Normal file
17
old_snippets/describe-raku-variable.en.md
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
---
|
||||
title: "describing a raku variable"
|
||||
date: 2021-10-15T18:04:19+04:00
|
||||
draft: false
|
||||
snippet_types:
|
||||
- raku
|
||||
---
|
||||
|
||||
My go to way to figure out what I'm working with in Raku.
|
||||
|
||||
```raku
|
||||
my $res = cool_thing();
|
||||
|
||||
say $res.WHAT;
|
||||
say $res.^attributes;
|
||||
say $res;
|
||||
```
|
||||
Loading…
Add table
Add a link
Reference in a new issue