Raku / examples

Many examples of Raku code
https://examples.raku.org/
Artistic License 2.0
294 stars 89 forks source link

Expected output #63

Open Nightblade opened 5 years ago

Nightblade commented 5 years ago

I'm just reading through https://examples.p6c.dev/categories/cookbook/01strings/01-00introduction.html and I notice some (most?) of the examples don't show the expected output. Is this something that can be done automagically, or does someone need to go through and add them manually?

Example with expected output:

say '~$scalar is ', (~$scalar).^name; # ~$scalar is Str

Example with no expected output:

say 'The quick brown fox\n\tjumps over the lazy dog\n';