ExInt, stands for Expression Interpreter, helps you to calculate math and manages logic. It was developed by turrnut and first released September 24, 2022. It have a high performance and accurate calculation. Try ExInt now to evaluate an expression.
Install exint, configure enviroment variable, and type the following in the command line to open the exInt shell
$ exshell
You can also create a file end in .exint and run the code to execute the code in your file
$ exint
Create a variable using the val keyword:
val <variable_name> = <variable_value>
doing math using our operator
<value||variable-name> <value||variable-name>
Arithmatic operators include: + "plus", - "minus", * "multiply", / "divide", ^ "power"
Logical operators include: && "and", || "or"
Comparison operators include: == "equals", != "not equals", >(=) "greater than (or equal to)", <(=) "less than (or equal to)"