Start for example and space to cycle through, up to input your own ---------------------------DOCUMENTATION------------------------------- compute.add(number, number) Example: [compute.add(5, 3)] --> 8 Also works for compute.sub, compute.mul, and compute.div =================== =============== compute.add($compute.add[number, number]$, number) Adds the result of adding number 1 and 2, to number 3. Works for all different valid methods, ie sub and mul and div. Also works in the 2nd input for compute as well. =========================Vars====================== var.create(varName, startingvalue) This makes a new var with name varName, and value startingvalue. var.set(varName, value) This sets varName to value. Will make var if does not exist. var.read(varName) This returns the value of varName --------------------------------------------------------------------------------- You can use compute class methods as the second input in the first to methods of the var class. Example: var.create(varName, $compute.add[2, 3]) --> makes a var with value 5 ======================Class sensing================== sensing.input(Prompt) --> returns answer to the prompt sensing.mousex --> returns the mouse X sensing.mousey --> returns the mouse Y sensing.mousedown --> returns true or false sensing.username --> returns username ================================================== Thats all so far. I will expand this documentation as I update the code.
<------===================Updates==================------> 5a.beta: First main NestCode release. Current features { Compute, and Vars. }