mirror of
https://github.com/gui-cs/Terminal.Gui.git
synced 2026-01-01 08:50:25 +01:00
11 lines
226 B
C#
11 lines
226 B
C#
using Terminal;
|
|
|
|
class Demo {
|
|
static void Main ()
|
|
{
|
|
Application.Init ();
|
|
var top = Application.Top;
|
|
top.Add (new Window (new Rect (10, 10, 20, 20), "Hello"));
|
|
Application.Run ();
|
|
}
|
|
} |