Releases: Techcraft7/7Sharp
Releases · Techcraft7/7Sharp
v2.0 Beta 1/9/2021
THIS IS A BETA, NOT A RELEASE! EXPECT ISSUES!
Features
- Redesigned Interpreter, much faster and easier to manage
- Shell Plugins Tutorial
- Built in docs via the
mancommand (man listfor a list!) - Simpler array syntax
- Trig functions
resetColor()function - resets color of console
See Version 2.0 page for full changelog
1.9
New features
wait(ms)waitmsmiliseconds
ARRAYS!
Create an array: a = new int[] { 1, 3, 3, 7 };
Do chars("some string"); to get a character array
Get length of an Array OR String: len("string"); OR len(myArray);
Example: loop through chars from input
a = chars(read());
loop (len(a)) {
write(a[getLoopIndex()]);
}
1.8
New parser!
- syntax was redesigned
- now uses
{,}, and; - similar structure
- C# style code
- functions
- built in shell
1.7
Woo hoo! an API!