Q: Is it turing complete
A: Probably, I haven't implemented rule 110 yet
Q: Where can I find source code
A: Ctrl + U or Github
Q: Why you don't use a lexer tokenizer etc.
A: I like simplicity
Example 1: Hello, World!
print "Hello, World!"
Example 2: fizzbuzz
n = 1
goto main
#fizzbuzz
if n % 3 == 0 && n % 5 == 0
print "fizzbuzz"
goto increment
if n % 3 == 0
print "fizz"
goto increment
if n % 5 == 0
print "buzz"
goto increment
print n
#increment
n = n + 1
#main
if n <= 100
goto fizzbuzz
kys