[!] Please credit if you use any of the assets used in this project [!] Left Arrow | Backspace Up Arrow | Go up a line Down Arrow | Go down a line Right Arrow | Delete an entire line [Lines cannot be more than 36 characters] Side Functions: Export : Brings up a list you can triple-click and copy paste. Import : Brings up a dialog box you can paste code into Jump to line : Jumps your cursor to an inputted line. Run : Runs your code. Clear Cache : Clears system RAM and variable values. > Functions var | FORMAT: var var_name = 'value' (Variables cannot have the names of functions) Sub Functions: var math output_variable = variable_1 [!, *, /, +, or -] variable_2 sys_config | FORMAT: sys_config config_setting Config Settings: disable_errors print | FORMAT: print value print 'string' goto | FORMAT: goto line# wait | FORMAT: wait time_duration
This was made months ago out of complete and utter boredom (and a bit of an urge to learn and experiment) I'd love to see what you can all come up with using this (very) limited IDE. If it gets enough demand, possibly work on it more? EXAMPLE PROGRAM: var w_1 = 'wiggle '█var w_2 = ' wiggle '█var w_3 = ' wiggle'█#print the above variables█wait 0.01█print w_1█wait 0.01█print w_2█wait 0.01█print w_3█wait 0.01█print w_2█goto 5█