17 lines
324 B
C#
17 lines
324 B
C#
|
using System;
|
|||
|
using Ooui;
|
|||
|
|
|||
|
namespace Samples
|
|||
|
{
|
|||
|
class Program
|
|||
|
{
|
|||
|
static int Main (string[] args)
|
|||
|
{
|
|||
|
Console.WriteLine ("Hello World!");
|
|||
|
var server = new Server ();
|
|||
|
server.RunAsync ("http://*:8080/").Wait ();
|
|||
|
return 0;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|