Skip to content

Instantly share code, notes, and snippets.

@0racle
Last active May 2, 2023 02:46
Show Gist options
  • Save 0racle/84b07e193a4e7efd08d92b7d691855ed to your computer and use it in GitHub Desktop.
Save 0racle/84b07e193a4e7efd08d92b7d691855ed to your computer and use it in GitHub Desktop.
Raku EVAL Test
sub infix:<p>($a, $b) is assoc<left> { $a + $b }
sub infix:<t>($a, $b) is assoc<left> { $a * $b }
for $=finish.lines -> $line {
say $line.trans('+*' => 'pt').&EVAL;
}
=finish
2 * 3 + (4 * 5)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment