2
0
mirror of https://gitlab.com/ita1024/waf.git synced 2024-11-22 09:57:15 +01:00
waf/demos/csharp/Hi.cs

16 lines
172 B
C#
Raw Normal View History

2011-09-10 11:13:51 +02:00
namespace MyApp
{
using System;
public class Hi
{
public static int Main(string[] args)
{
My fu = new My("Hello there");
fu.display();
return 0;
}
}
}