New Version: https://scratch.mit.edu/projects/394022914/ Well here is a little programming language I made idk. Click the Run button (green triangle) to run the code. There is a default program that you can play. This language is a low-level language, similar to assembly. There are only inputs, outputs, variables, and simple conditional jumps. If you want to make your own program you can analyse the the preset program. If you stuff up the syntax there should be an error message. It took me a few hours to code the tic tac toe game omg no moree noo mrorerere!!!!!!!! A few examples are below: ========================================= print(What gets printed out!) input(Type you age or something,age_variable) print(You are (age_variable) years old!) The jumpl() statement is a conditional jump. basically: jump((age_variable)<11,1) is the same as: if you are younger then 11, go back to the first code line. The reset() function sets variables eg. reset(2*3,my_variable) sets my_variable to 6 reset((age)+(my_variable),my_variable) sets my_variable to how old I will be in 6 years :) ========================================= Variables can't be put everywhere at the moment, remember, if you want to access the value of a variable, surround the (variable_name) in parenthesis. ========================================= I would be very excited to see anything you make, so please remix! :)