12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- syntax logoPlayer_syntax (logoPlayer_lexique) {
- rule <start_symbol> {
- # Routine definition
- $PROGRAM$
- <routines>
- $BEGIN$
- <instructions>
- $END$
- $.$
- }
- rule <routines> {
- repeat
- while
- <routine>
- end
- }
- rule <routine> {
- $ROUTINE$
- $identifier$ ?let @lstring routineId
- $BEGIN$
- <instructions>
- $END$
- }
- rule <instructions> {
- repeat
- while
- <instruction>
- end
- }
- rule <instruction> {
- select
- <move>
- or
- <set_pen>
- or
- <call_routine>
- end
- $;$
- }
- rule <move> {
- select
- $FORWARD$
- or
- $ROTATE$
- end
- $integer$ ?let @luint moveLen
- }
- rule <set_pen> {
- $PEN$
- select
- $UP$
- or
- $DOWN$
- end
- }
- rule <call_routine> {
- $CALL$
- $identifier$ ?*
- }
-
- }
|