Skip to content

Instantly share code, notes, and snippets.

@DinoChiesa
Created April 21, 2014 19:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DinoChiesa/11154522 to your computer and use it in GitHub Desktop.
Save DinoChiesa/11154522 to your computer and use it in GitHub Desktop.
// 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