BAL

From Esolang
Jump to navigation Jump to search

BAL (or Basic Assembled Language) is a esolang came from here. Created by User:Ractangle

Commands

Command It's Action
ASSIGN <name> TO <value> Assigns a variable.
CHECK Condition command.
WHILE Reapeats if the condition is true.
PRINT Prints the string next to it.
USER Gets user input.
NOTE Comment.
SUM Math command. You can also do the math with strings
DEFINE Function command.
END Ends the current CHECK operator. Ends the program is not inside a CHECK operator

Examples

Hello, world!

PRINT Hello, world!{N}
END