add the old snippet md files

This commit is contained in:
Travis Shears 2025-06-05 16:20:57 +02:00
parent fc0dd204c7
commit bcf8313a4b
110 changed files with 3048 additions and 0 deletions

View 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;
```