-SIMBASCRIPT- New things: -Line by line coding with NO semicolons -Repetitions (scroll down | ) \/ functions: 1. add-: say "add-" and then whatever you want to output 2. set-: way 1. say "set-" and then whatever variable you want to set, then in the next line what it is set to(If the variable you named is not there, it will make one for you.) way 2. say "set-" and then say the variable you are making, then in the next line, say "ask" and then in the line after that, write what you want it to ask.(If the variable you named is not there, it will make one for you.) way 3. say "set-", and then say the variable you are making, then in the next line, rand, and then after that, make a line that will say the lower end of the random range, and finally, a last line with the high end of the range.(If the variable you named is not there, it will make one for you.) 3. prv-(print variable): say "prv-", and then the variable you would like to print 4. chv-(change variable): say "chv-", and then the variable you want to change, and then in the next line, the amount you want to change it by. 5. jov-(join variable): say "jov-", and then the variable you are joining something to, and then in a new line, what you are joining to it. 6. if--: Say "if--", and then say the variable you are checking, then a semicolon, and then what the value you are I checking if it is, and then in a new line, all the code in the if loop(With their separate lines), and then closing square brackets. 7. ifv-(if variable): Say "ifv-", and then say the variable you are checking, then in a new line, the variable you are I checking if it is, and then with another new line all the code in the if loop(With their new lines), and then closing square brackets. 8. ife-(if-else): Say "ife-", and then say the variable you are checking, then in a new line, the value you are checking if it is, and then with another new line, all the code in the if loop(With their new lines), and then closing square brackets, then, in a new line, all the code in the else loop(With their new lines), then with a final new line, the closing brackets. 9. ive-(if-variable-else): Say "ive-", and then say the variable you are checking, then in a new line what the variable you are checking if it is, and then with another new line, all the code in the if loop(With their newlines, and then closing square brackets, then in yet another new line, the code in the else loop(With their newlines), then a semicolon, then closing brackets. 10. rep-(Repeat): Say "Rep-", and then the number of times you want it to repeat, and then in a new line the code you want to repeat(With their newlines), and then in a final new line, curly closing brackets error detection: 1. Not-a-function: Will detect if what you typed is a function, and if it is not, will stop the program and bring up the error: Error: that is not a function.
This update was made to make it so you can repeat something a number of times.