-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathProgram.cs
More file actions
26 lines (25 loc) · 752 Bytes
/
Program.cs
File metadata and controls
26 lines (25 loc) · 752 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
/*
* 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!");
}
}
}