-
-
Save Mercerenies/2b5f94e109b8e66fd17a8c0de572cf4a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
multi sub to_instruction(Str $x, Int $pos is rw) { | |
given $x { | |
when '>' { | |
$pos += 1; | |
Empty | |
} | |
when '<' | |
$pos -= 1; | |
Empty | |
} | |
default { | |
Instruction.new(atom => $x, target => $pos) | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment