@nataliapc/mcp-openmsx
Version:
Model context protocol server for openMSX automation and control
39 lines (22 loc) • 515 B
Markdown
Generates a string with a specified number of spaces.
This instruction is equivalent to `STRING$` used with the ASCII code 32.
`SPACE$(<Number>)`
`<Number>` is the number of spaces, it must be between 0 and 255.
```basic
10 PRINT "A";SPACE$(5);"B"
20 PRINT SPACE$(5);"AB"
RUN
A B
AB
```
`SPC()`, `STRING$()`, `TAB()`
MSX-BASIC 1.0 or higher
Retrieved from "https://www.msx.org/wiki/SPACE$()"