examples
examples copied to clipboard
Expected output
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';