Difference between revisions of "BooBoo"
(Created page with "thumb == About == BooBoo is a mini language that shares some DNA with assembly language but is much higher level. It includes two versions, one comm...") |
|||
Line 4: | Line 4: | ||
BooBoo is a mini language that shares some DNA with assembly language but is much higher level. It includes two versions, one command line only version and one with a builtin, powerful 2D game API. | BooBoo is a mini language that shares some DNA with assembly language but is much higher level. It includes two versions, one command line only version and one with a builtin, powerful 2D game API. | ||
+ | |||
+ | == Syntax == | ||
+ | |||
+ | BooBoo uses Polish notation for syntax. That means the operation comes first instead of in the middle. e.g. + x 1 increments x. |
Revision as of 21:35, 15 September 2024
About
BooBoo is a mini language that shares some DNA with assembly language but is much higher level. It includes two versions, one command line only version and one with a builtin, powerful 2D game API.
Syntax
BooBoo uses Polish notation for syntax. That means the operation comes first instead of in the middle. e.g. + x 1 increments x.