Skip to content

Instantly share code, notes, and snippets.

@milk19873
Created June 29, 2016 11:44
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 milk19873/adf45144e556645893b6c4f38ab49c9b to your computer and use it in GitHub Desktop.
Save milk19873/adf45144e556645893b6c4f38ab49c9b to your computer and use it in GitHub Desktop.
テストソースを入力してみました。
using System;
using Gtk;
namespace HelloWorld
{
class MainClass
{
public static void Main (string[] args)
{
Application.Init ();
MainWindow win = new MainWindow ();
win.Show ();
Application.Run ();
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment