zeron ------ zeron is a completely open source lightweight programming language by @Gamer_Zero. Below is the user guide. Follow this link to have a better experience: https://turbowarp.org/1144436442?hqpen&turbo zeron guide ------ #1 - Command roots --- jmp - jumps to specified line in code alu - does maths, output accessed in alu variable ljp - jumps, but can only be used a limited amount pnt - prints a specified string cif - continue if, continues code if condition is true end - end the current if condition var - handles variables rst - resets the built-in timer run - runs a line of code csc - clears screen #2 - Layout guide --- jmp (line) alu (1st number) (operation as symbol) (2nd number) ljp (line) (uses) cjp (line) (condition) pnt (text) cif (string 1) (operation as symbol) (string 2) end var (variable name) (operation as symbol) (target) rst run (line of code, can be a variable) csc #3 - Notes --- The ljp command does not work when jumped to because of the way it is counted (bug, may be fixed at some point) #4 - Using variables --- There isn't any use having variables if you can't use them! To put variables into input boxes, put a # before the name of the variable, for example cif #line = 5 where line is a variable being inputted into the code. There are 2 variables which are built in to zeron, TIMER and ALU. The ALU variable shows the last alu command result, and TIMER shows the built-in project timer, which can be reset by using RST. Update log ------ 09/03/2025 v1.5 added CSC and RUN (and more on TW) 07/03/2025 v1.4 Turbowarp only version 08/02/2025 v1.3 added ~ rounding op on VAR and ALU 08/02/2025 v1.2 added and RST command 08/02/2025 v1.1 Invalid VAR operations now set variable 07/02/2025 v1.0 First release of zeron.