SysRPL Programming Example

SysRPL is a stack-based language . “Hello World” in SysRPL might look like

:: DOCLLCD

“hello world”

DISPROW1

WaitForKey

2DROP

**@**Clears the LCD

Puts the string on the stack

Display it on row 1 of the screen

Pop off the key information

end of program terminator