Merge branch 'sorry-panic' into 'master'

sorry, it was not panic-proof ><, fixed

See merge request mhart/DancingDroids!57
This commit is contained in:
Martin HART 2020-11-07 19:53:31 +01:00
commit 0a00cb8931
1 changed files with 2 additions and 2 deletions

View File

@ -1,3 +1,3 @@
world = { ASCII_DIGIT* ~ " " ~ ASCII_DIGIT* } world = { ASCII_DIGIT+ ~ " " ~ ASCII_DIGIT+ }
robot_init = { ASCII_DIGIT* ~ " " ~ ASCII_DIGIT* ~ " " ~ ("S" | "N" | "W" | "E") } robot_init = { ASCII_DIGIT+ ~ " " ~ ASCII_DIGIT+ ~ " " ~ ("S" | "N" | "W" | "E") }
robot_instructions = { ASCII_ALPHA_UPPER+ } robot_instructions = { ASCII_ALPHA_UPPER+ }