diff --git a/README.md b/README.md index 2921e11..83a2495 100644 --- a/README.md +++ b/README.md @@ -71,7 +71,6 @@ execute if std:out run return run function my_function
var:setk Name of the variable (string)function var:set { k: my_variable, v: 10 }v Value of the variable (int)var:unsetk Name of the variable (string)function var:unset { k: my_variable }var:mvk Old variable name (string)function var:mv { k: my_variable, v: my_renamed_variable }v New variable name (string)var:inck Name of the variable (string)function var:inc { k: my_variable }var:deck Name of the variable (string)function var:dec { k: my_variable }var:putfunction var:put { k: my_variable }math:addk Name of the variable (string)function math:add { k: my_variable, v: 10 }v Number to add (string)v Number to add (int)math:subk Name of the variable (string)function math:sub { k: my_variable, v: 10 }v Number to subtract (string)v Number to subtract (int)math:mulk Name of the variable (string)function math:mul { k: my_variable, v: 10 }v Number to multiply (string)v Number to multiply (int)math:divk Name of the variable (string)function math:div { k: my_variable, v: 10 }v Number to divide (string)v Number to divide (int)math:modk Name of the variable (string)function math:mod { k: my_variable, v: 10 }v Number to modulo (string)v Number to modulo (int)comp:eqa Name of the first variable (string)a = b and store the result in stdoutfunction comp:eq { a: my_variable, b: my_other_variable }a = b and store the result in the standard outputv Name of the second variable (string)b Name of the second variable (string)comp:gta Name of the first variable (string)a > b and store the result in stdoutfunction comp:gt { a: my_variable, b: my_other_variable }a > b and store the result in the standard outputv Name of the second variable (string)b Name of the second variable (string)comp:gteqa Name of the first variable (string)a >= b and store the result in stdoutfunction comp:gteq { a: my_variable, b: my_other_variable }a >= b and store the result in the standard outputv Name of the second variable (string)b Name of the second variable (string)comp:lta Name of the first variable (string)a < b and store the result in stdoutfunction comp:lt { a: my_variable, b: my_other_variable }a < b and store the result in the standard outputv Name of the second variable (string)b Name of the second variable (string)comp:lteqa Name of the first variable (string)a <= b and store the resulteq in stdoutfunction comp:lteq { a: my_variable, b: my_other_variable }a <= b and store the resulteq in the standard outputv Name of the second variable (string)b Name of the second variable (string)std:outexecute if function std:out run function my_functionfail. Else this function will also fail