My first attempt to making a programming language. Right now, all you can do is declare variables, set them to numbers, and print them. Key words: var set say To declare a variable called x write: var x To set x to -5.5 write: set x=5 To print x (which automatically stops the script) write: say x IMPORTANT: don't put spaces where they don't belong; they only belong after the key words If the script goes on forever, the most likely cause is that you are trying to print/set a non-existant variable. If the script is taking forever, pressing "B" should stop it. Thanks to Pheasant49 and his project http://scratch.mit.edu/projects/pheasant49/1247100 for inspiring me