mirror of
https://gitlab.com/ita1024/waf.git
synced 2024-11-21 17:35:55 +01:00
16 lines
172 B
C#
16 lines
172 B
C#
namespace MyApp
|
|
{
|
|
using System;
|
|
|
|
public class Hi
|
|
{
|
|
public static int Main(string[] args)
|
|
{
|
|
My fu = new My("Hello there");
|
|
fu.display();
|
|
return 0;
|
|
}
|
|
}
|
|
}
|
|
|