LABEL [HELLO WORLD] |
Displays text at the Turtle location. |
-
|
SOUND [1000 200] |
SOUND [<frequency> <duration>] where "frequency" is in Hz and "duration"
is in 1000ths of a second. |
-
|
SETPENSIZE [10 10] |
Sets width and height of the drawing pen. MSW Logo uses only the second value. Set them both the
same. |
-
|
SETPENCOLOR [0 0 0] |
SETPENCOLOR [n1 n2 n3] determines pen colour where n1, n2, and n3 are each numbers between 0
and 255 inclusively. For example:
SETPENCOLOR [0 0 0] = Black
SETPENCOLOR [0 0 255] = Blue
SETPENCOLOR [0 255 0] = Light Green
SETPENCOLOR [0 255 255] = Light Cyan
SETPENCOLOR [255 0 0] = Red
SETPENCOLOR [255 0 255] = Light Magenta
SETPENCOLOR [255 255 0] = Yellow
SETPENCOLOR [255 255 255] = White
SETPENCOLOR [155 96 59] = Dark Brown
SETPENCOLOR [197 136 18] = Light Brown
SETPENCOLOR [100 162 64] = Green
SETPENCOLOR [120 187 187] = Cyan
SETPENCOLOR [255 149 119] = Apricot
SETPENCOLOR [144 113 208] = Purple
SETPENCOLOR [255 163 0] = Orange
SETPENCOLOR [183 183 183] = Grey
|
SETPC 0
SETPC 1
SETPC 2
SETPC 3
SETPC 4
SETPC 5
SETPC 6
SETPC 7
SETPC 8
SETPC 9
SETPC 10
SETPC 11
SETPC 12
SETPC 13
SETPC 14
SETPC 15
|
SETFLOODCOLOR [0 0 0] |
SETFLOODCOLOR [n1 n2 n3] sets fill colour for fill command where n1, n2, and n3 are each numbers
between 0 and 255 inclusively. |
SETFC 0
|
SETSCREENCOLOR [0 0 0] |
SETSCREENCOLOR [n1 n2 n3] sets screen colour immediately where n1, n2, and n3 are each numbers between
0 and 255 inclusively. |
SETSC 0
|
MAKE "NUMBER 15 |
Sets a variable name, NUMBER to a nominated value, 15 |
-
|
NAME 15 "NUMBER |
Alternative for MAKE command |
-
|