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

This commit is contained in:
Volodymyr Patuta 2020-11-07 19:37:55 +01:00
parent 8bc35a0c04
commit 8cda9875fd
1 changed files with 2 additions and 2 deletions

View File

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