/PCL

a simple language that compiles into c#, and uses a lot of lua syntax

Primary LanguageC#

PCL

A superset of C# that mixes the Lua and C# syntax together.

Example

using System;

local var1 = "balls";

public static fun Main(local[] args)
{
    if var1 == "balls"
    {
        Console.WriteLine("Hello World!");
    }
}