Jaredk3nt/laserwave

Language Support for C# and Java

rockofox opened this issue · 2 comments

I love this theme.

It would be amazing if you could add C# and Java support (they are pretty similar to implement I think).

C# example:

using System;
using System.Windows.Forms;

class Program
{
    static void Main()
    {
        // This is a comment
        MessageBox.Show("Hello, World!");
        /*               
         * This too 
         */
        Console.WriteLine("Hello!");
    }
}

Java example:

/*
* This is a test
*/
import SomeLibrary.*;
class HelloWorldApp {
    public static void main(String[] args) {
        System.out.println("Hello World!"); // Prints the string to the console.
    }
}

Thanks @xHatchx, I'll work on this this afternoon!

Pushed up code and published with these changes (v1.1.4) I've never written any C# so let me know if there is anything missing!