J# is a programming language created in 2002.
#724on PLDB | 22Years Old |
Visual J# (pronounced "jay-sharp") is an implementation of the J# programming language that was a transitional language for programmers of Java and Visual J++ languages, so they could use their existing knowledge and applications on .NET Framework. It was introduced in 2002 and discontinued in 2007, with support for the final release of the product continuing until October, 2017. J# worked with Java bytecode as well as source so it could be used to transition applications that used third-party libraries even if their original source code was unavailable. Read more on Wikipedia...
package HelloWorld;
public class HelloWorld
{
public static void main(String[] args)
{
System.Console.Write("Hello World");
}
}
Feature | Supported | Example | Token |
---|---|---|---|
Strings | ✓ | "Hello world" | " |
Print() Debugging | ✓ | System.Console.Write |