TexCode 1.4 soon to be released!
TexCode 1.4:
1. Runs slightly faster than previous versions.*
Console output:
a = 3
(the sum of b
+ c
)
2. retrieve
function's syntax changed.
Before: retrieve a ;
After: retrieve a
3. for
statements will be added. Syntax: for
<maximum number of iterations> <value to print>. For example:
for 5 hello
Console output:
hello
hello
hello
hello
hello
4. Able to add variables' values to existing variables' values using the add
function. For example:
add a to b
5. Able to initialize and set variables' values to other variables' values. For example:
int a = b
6. Values (not variables' names) will have to be preceded by $s. For example:
int a = $hello
retrieve a ;
Console output:
hello
7. Maximum number of variables (per data type) increased to 100 (from 20).
8. Maximum number of lines in a function increased to 100 (from 20).
9. Fixed issue involving the initialization of string
, bool
, and char
variables.
10. Variable name is outputted to the console when variable is initialized without a value.
11. Fixed issue involving using the set
function when setting the value of a bool
variable.
12. Fixed issue involving the names and values of int
and string
variables not outputting to the console correctly when using the set
function.
13. set
can set a variable's value to another variable's value.
14. The print
function can print multiple words to the console.
There are so many new features that we can't even list them all!
*Certain actions will be performed quicker in TexCode 1.4 than in earlier versions.