We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nataliapc/mcp-openmsx'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
SPC().md•456 B
# SPC()
## Effect
Inserts a variable amount of spaces in a `PRINT` or `LPRINT` instruction.
## Syntax
`SPC(<Number>)`
## Parameter
`<Number>` is the number of spaces, it must be between 0 and 255.
## Example
```basic
10 PRINT "MSX";SPC(3);"Forever!"
RUN
MSX Forever!
```
## Related to
`LPRINT`, `PRINT`, `SPACE$()`, `STRING$()`, `TAB()`
## Compatibility
MSX-BASIC 1.0 or higher
## Source
Retrieved from "https://www.msx.org/wiki/SPC()"