meson/test cases/csharp/1 basic/prog.cs

9 lines
159 B
C#
Raw Normal View History

2014-07-19 02:49:14 +08:00
using System;
2014-07-19 02:49:14 +08:00
public class Prog {
static public void Main () {
TextGetter tg = new TextGetter();
Console.WriteLine(tg.getText());
2014-07-19 02:49:14 +08:00
}
}