123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- 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
- log 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
- log moveLen
- }
- rule <set_pen> {
- $PEN$
- select
- $UP$
- or
- $DOWN$
- end
- }
- rule <call_routine> {
- $CALL$
- $identifier$ ?*
- }
-
- }
|