Added some small boring scripts and programs writen in few last years
[mirrors/Programs.git] / mono / testgtk / testgtk / Main.cs
CommitLineData
21c4e167
H
1using System;
2using Gtk;
3
4namespace testgtk
5{
6 class MainClass
7 {
8 public static void Main (string[] args)
9 {
10 Application.Init ();
11 MainWindow win = new MainWindow ();
12 win.Show ();
13 Application.Run ();
14 }
15 }
16}
This page took 0.146656 seconds and 4 git commands to generate.