Programming language made to resemble java, javascript, and english. Made for beginners to get into coding and learn how to think like a programmer. Not meant for professional use.
- Integers (int)
- Floats (float)
- Strings (String)
- Booleans (bool)
- Lists
- Integer Lists (int[])
- Float Lists (float[])
- String Lists (String[])
- Boolean Lists (bool[])
- Declare -
let [type] [var] = [expression]. - Assign -
[var] = [expression]. - Mutate(lists can only do add mutations) -
add [expression] to [var]orsubtract [expression] from [var]ordivide/multiply [var] by [expression] - List Only Usages
- RemoveAt =
removeAt [listVar] sub [index] - Remove =
remove [expression] from [listVar] - RemoveAll =
removeAll [expression] from [listVar]
- RemoveAt =
- Print(Any Value) -
print([expression]). - Show Message Box(String) -
showMessageDialog([expression]). - Show Input Box(String) -
showInputDialog([expression]). - To String(Any Value but string) -
toString([expression]). - To Integer(Any Value but int) -
toInt([expression]). - To Float(Any Value but float) -
toFloat([expression]).
- Declare -
function [name]([arguments]){} - Call -
[name]([parameters]).
- Equals -
=orequals - Not Equal -
!=ornot equals - Greater than -
>orgreater than - Less than -
<orless than - Greater than or equal to -
>=orGreater than or equal to - Less than or equal to -
<=orLess than or equal to - Plus -
+orplus - Minus -
-orminus - Multiply -
*ortimes - Divide -
/ordivide - And -
&&orand - Or -
||oror
- When using a list in an expression, the list can be the only element in the expression, you cant do any Operators to lists in Expressions
- When creating a list, surround with brackets and enter each value followed by a comma and a space - ex.
[2, 2, 3, 3]