When TexCode 0.1 was first released, our main programmer was 12 years old, explaining the bugs and general lack of complexity of the project. However, we're back, working on TexCode 2.0! Stay tuned!
TexCode 1.4 will not run in Terminal like previous versions, but will be its own Windows Forms application!
NOTE: Sorry about the delay... there were unexpected technical difficulties as we are completely revamping TexCode
Certain commands in Monthly Snapshots 08-25-2012 and earlier will not be recognized by TexCode. This is normal, as the features have not been implemented as of yet. But we're working on it, and TexCode 1.4 should be released soon!
Monthly Snapshot 08-25-2012 released only 4 days after the last monthly snapshot (08-21-2012). Our developer team fixed a major bug, so the new version works a lot better.... Just to clear things up about having a monthly snapshot released before a week (let alone a month) had passed.
Monthly snapshots of TexCode 1.4 will be available from the Downloads page!
Archives will be removed from TexCode's SourceForge website for ease of downloading by users. They are available upon request however, by e-mailing texcode.texpertssoftware@gmail.com. Please tell us the version of TexCode you would like to obtain (NOTE: TexCode 1.0 is not available). Thank you!
The Blog post concerning the release of TexCode 1.4 previously stated that the set function would have been able to set variables to multiple variables' values combined. For example:
int a ;
int b = 5
int c = 6
set a to b c ;
Console Output
a=11 (the sum of b and c)
However, due to difficulties implementing this feature, it has been decided that this capability will not be included in the next release. The add (to be released in TexCode 1.4) will be able to accomplish the same task. For example:
int b = 5
int a = b
int c = 6
add c to a
Console Output
a=11 (the sum of b and c)
The TexCode developer team may discontinue TexCode for Mac, as TexCode for Windows will have more features if TexCode for Mac is continued. Contact us at texcode.texpertssoftware@gmail.com if you would not like to see TexCode for Mac discontinued. However, Mac users may still be able to run TexCode for Windows with WINE, free software which allows Windows applications to run on Mac computers. If you have any problems once TexCode 1.4 is released, please contact us at texcode.texpertssoftware@gmail.com.... read more
TexCode 1.4 for Windows will have its own GUI, instead of running in Command Prompt!
NOTE: As a result, it may be released slightly later than TexCode 1.4 for Mac.
TexCode 1.4 soon to be released!
TexCode 1.4:
a = 3 (the sum of b + c)retrieve function's syntax changed.retrieve a ;retrieve afor statements will be added. Syntax: for <maximum number of iterations> <value to print>. For example:for 5 hellohello
hello
hello
hello
helloadd function. For example:add a to bint a = bint a = $hello
retrieve a ;hellostring, bool, and char variables.set function when setting the value of a bool variable.int and string variables not outputting to the console correctly when using the set function.set can set a variable's value to another variable's value.print function can print multiple words to the console.... read more