CASIO-BASIC Command Reference

This website was based off of CASIO's official programming guide


? (Input command)

Stops execution until a input of a value or expression is entered


The example will display the entered input until [EXE] is pressed to dismiss the display

"Input a number"? -> A

A◢



◢ (Output command)

Displays a result during execution until [EXE] is pressed


The example will display B (842) until the [EXE] button is pressed to dismiss the display

842 -> B

B◢



: (Sequential execution command)

Connects TWO statements in a single line separated by the : command (not recommended, use a new line instead for cleaner code)


The example will assign two calculations in sequential order

5+9 -> B : 49-3 -> C