1234567891011121314151617181920212223242526 |
- map @routineMap {
- insert insertKey error message "the '%K' routine has been already declared"
- search searchKey error message "the '%K' routine is not declared"
- }
- list @instructionList {
- @instruction mInstruction
- }
- abstract class @instruction {
- }
- class @penUp : @instruction {
- }
- class @penDown : @instruction {
- }
- class @forward : @instruction {
- @luint mLength
- }
- class @rotate : @instruction {
- @luint mAngle
- }
|