This is a coding language that I made. It a drawing/music program and you type all the code! So, here is a tutorial: To run a program, type run. First, you have the command, then is the information after it. Everything is seperated by a space. Usually, the X and Y is right after the command. For inputs with spaces (such as the text in the text command), you use "s to combine them together. Here is an example of a command: circle 0 0 50 10 black The first 2 are the x and y, the 50 is the radius, and the 10 is the thickness. Click the green flag to go back to the editor Here are the commands and their inputs (note that the "words" after the first "word" is telling you what kind of input you should put, meaning you don't put what is listed, but rather your own input): stage [color] circle [x] [y] [radius] [color] filledCircle [x] [y] [radius] [color] rect [point1x] [point1y] [point2x] [point2y] [color] filledRect [point1x] [point1y] [point2x] [color] line [point1x] [point1y] [point2x] [point2y] [color] tri [point1x] [point1y] [point2x] [point2y] [point3x] [point3y] [color] filledTri [point1x] [point1y] [point2x] [point2y] [point3x] [point3y] text [x] [y] [size] [text] [color] setInstrument [instrument] playNote [note] [beats] setThickness [value] startNote [note] [beats] wait [value] editLine [line number] [value] deleteLine [line number] say [text] startSay [text] setVoice [voice] setVar [var number] [value] (note: use _var[var number] to get the value of the selected variable) changeVar [var number] [value] (note: use _var[var number to get the value of the selected variable) repeat [number] [starting from line] goto [line number] if [variable] [ < / > / = / !=/ or / and / keyPressed {key} / mouseDown ] [line to stop at] (note: 'and' or 'or' can only be used once for each 'if' statement) ask [question] (note: you can use the var _answer to get the answer) random [number1] [number2] clearall Variables: _var[var number] _mouseX _mouseY random [number] [number] _answer [value] join [value] (note: multiple joins don't work) ! [condition]
WARNING: Commands are case-sensitive. Use turbo mode if things are slow Used my Visual Pen Pack for a lot of this: https://scratch.mit.edu/projects/560483007/ 2690 blocks, the biggest project I made. #Programming #Language #Coding