Skip to content

Releases: Techcraft7/7Sharp

v2.0 Beta 1/9/2021

09 Jan 22:45

Choose a tag to compare

v2.0 Beta 1/9/2021 Pre-release
Pre-release

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 man command (man list for a list!)
  • Simpler array syntax
  • Trig functions
  • resetColor() function - resets color of console
See Version 2.0 page for full changelog

1.9

16 Mar 18:48

Choose a tag to compare

New features

  • wait(ms) wait ms miliseconds

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

15 Mar 23:20

Choose a tag to compare

1.8

New parser!

  • syntax was redesigned
  • now uses {, }, and ;
  • similar structure
  • C# style code
  • functions
  • built in shell

1.7

12 Jul 23:09
1d4a012

Choose a tag to compare

1.7

Woo hoo! an API!