what you can use: start(); //start() write(); //write(hello world); stop; //stop; value([] <>); //value([foo] <bar>); read([] <>); //read([foo] <apple>); example scripts: basic "write();" script: start(1); write(hi universe); stop; basic "value([] <>);" script: start(1); value([foo] <hi universe>); write([foo]); stop; basic "read([] <>);" script: start(1); value([foo] <hello world>); write([foo]); read([foo] <hi universe>; write([foo]); value([bar] <iteration2?>); write([bar]); read([bar] <iteration3>; write([bar]); stop;
iteration log (there will be 5 iterations for this version) -----------------------------iteration1---------------------------------added start(); //needed to start a script -added write(); //basically a say block -added stop; //needed to stop a script [not rly rn] -----------------------------iteration2---------------------------------added value([] <>); //can be used like a variable, to learn more check the example scripts tab in the instructions -----------------------------iteration3-------------------------------- -added read([] <>); //replaces a variable's value, to learn more check the example scripts tab in the instructions