Controls: A - add a line I - insert a line at a certain position E - edit an existing line C - clear text D - remove a certain line R - run your program To make a program put the command, then on the next lines, the parameters. E.g. for the wait command, wait 1 All commands: clear - clears the canvas pen (up/down) - puts the pen up/down moveto (x) (y) - moves the dot to the position pen color (color) - sets the color pen size (size) - sets the pen size wait (time) - waits for time amount of seconds print (text) - prints the text to the console askprint (question) - asks the question then prints the answer to the console replace (line) (text) - replaces that line in the console with new text setvar (value) - sets a variable to that value changevar (value) - changes a variable by that value More is to be added! To make it print hello, world write: print Hello, world. FUNCTIONS: Type "f" to call up the function command prompt. You can name the function, show the function code, hide the function code and add code to the function. You can also type func1 in the code, name it, write the function and then write endfunc. Example: func1 sayhi print hi endfunc To call a function, put *(function name) in your code. IF STATEMENTS Write if then either input or var1 write end to finish STATEMENTS var1 (number/text) If var1 = number/test return true input (prompt) (answer) It will ask you the prompt and if the answer = (answer) return true EXAMPLE print Hello! if input How do you do? fine print I'm doing fine too. end print Okay, bye! This will always print "Hello" and "Okay, bye!" but will only print "I'm doing fine too!" if you respond fine.
This is another Scratch programming language. Please note this is not done. Doodle Program is focusing a lot on drawing text instead of just typing it in. --CHANGELOG-- v0.8 - First update Added print Added wait Added moveto Added replace Added clear Added pen up, down, and color Added askprint v0.9 - Added functions Added pen size Added compiling on run Added clearing functions Added unused hidden book of help. v1.0 - Added if statements Added creating functions inside a script Added variables