Created
April 21, 2014 19:57
-
-
Save DinoChiesa/11154522 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// WinFormsHello.cs | |
// | |
// flycheck: gmcs /t:module /debug+ -pkg:dotnet %f | |
// | |
// ------------------------------------------------------------------ | |
// | |
using System; | |
using System.Windows.Forms; | |
public class HelloWorld : Form | |
{ | |
static public void Main () | |
{ | |
Application.Run (new HelloWorld ()); | |
} | |
public HelloWorld () | |
{ | |
Text = "Hello Mono World"; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment