I started Corescript about 8 months ago. I have re-written it over and over again to perfect the interpreter. The project you see here is a demo, but if you want to see the full version, head over to https://corescript-lang.github.io/editor/
Print: Print text on the screen. To insert variables, insert them in wrapped around in round brackets. print Hello, World! print Hello, (name)! Note: Only the coder will see these notes. // This is a test. Variable: Create a variable and set it's value. var name=John Doe Input: Asks the user for info and stores it in a variable. input name=What’s your name? Clear Screen: Clears the screen of any text. cls Message: Creates a browser message box. msg Hello! Set: Set a variable to a specified value. set name=Jane Doe If: Checks if a variable equals something. If true, then the program will go to a specific line or label. if name=Johnny:4 Goto: Changes current line Corescript is reading. goto 3 Not: Checks if a variable does not equal something. If true, then the program will go to a specific line. not name=Johnny:5 Stop: Stops the program stop :: Define a label, so you can later visit it. :start Increase/Decrease: Write a variable, then ++ to increase or -- to decrease it. var str = 0 str++ str--