AnimationPython / Scotch-Language

A Function Based Programming Language Written in Python!

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Scotch-Language

Join the chat at https://gitter.im/Icelys/Scotch-Language

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!

About

A Function Based Programming Language Written in Python!

License:MIT License


Languages

Language:Python 100.0%