summaryrefslogtreecommitdiffstats
path: root/test cases/csharp/1 basic/prog.cs
blob: 6ee47b0749b6ab0b31e46b69d9a4a8944da44f61 (plain)
1
2
3
4
5
6
7
8
using System;

public class Prog {
    static public void Main () {
        TextGetter tg = new TextGetter();
        Console.WriteLine(tg.getText());
    }
}