See More

/* * Project: Simple project for JSIL * * Description: Minimal JSIL project, configured to run out-of-box (out-of-git?). Each non-obvious line * of C#/HTML/JavaScript code is described, however, how/why it works is discovered * by trail-and-error approach, no guarantees on correctness. * To use it in Your application, simply copy entire folder and add Your own content, * feel free to remove this header once You did it. * * License: Enjoy without any limitations. * * Author: Maciej "Expro" Grabowski * E-mail: [email protected] | [email protected] */ using System; namespace MyNamespace { class Program { public static void Main(string[] args) { Console.WriteLine("It works!"); } } }