A 100% Function Based Programming Language Written in Python!
To use, run interpreter.py and use the interactive prompt.
Here are some examples:
Printing:
out("Hello, world")
out(123.456)
out(False)
Data:
var(variable "something") // Sets var 'variable' to "something"
variable // Returns the value of var 'variable'
Combo:
var(hello "Hello,")
var(world "world")
out(hello)
out(world)
will print
Hello,
world
Have fun, and if you find a bug, please create an issue!