Bake

From Esolang
Jump to navigation Jump to search
This is still a work in progress. It may be changed in the future.

Bake is an esolang created by User:Ractangle in 2024 in our universe (or by Damac Toltius at the time when Snakel was almost done in gammaline universe). The whole concept is mostly inspired by 'Python' is not recognized as an internal or external command, operable program or batch file.

Syntax

n; Creates a line.
'...' String.
G n Goes to line n.
O{...} Print something.
E Halts program.
; Concatenate code.
I{...} Get user input
[def{varname,varval}] defines a variable

Examples

Hello, world!

1; O{'Hello, world!'};E

Cat program

1; O{I{}};E