I really like the idea of creating a programming language from Scratch (ba-dum, tss). Here is my first attempt for this language, which is supposed to be better than my previous ones. What should I call this? All existing functions are in the demo, as well as good examples of the syntax; here follows a walkthrough of all lines: set number to 100 Stores 100 to the variable number print (number) Prints out the value of number to the outputChannel. Note that the brackets are needed in order to use a variables value. print "String1" Prints out the string "String1". goto 2 Goes to the second line again.