logoPlayer-semantics.galgas 374 B

12345678910111213141516171819202122
  1. map @routineMap {
  2. insert insertKey error message "the '%K' routine has been already declared"
  3. search searchKey error message "the '%K' routine is not declared"
  4. }
  5. abstract class @instruction {
  6. }
  7. class @penUp : @instruction {
  8. }
  9. class @penDown : @instruction {
  10. }
  11. class @forward : @instruction {
  12. @luint mLength
  13. }
  14. class @rotate : @instruction {
  15. @luint mAngle
  16. }