diff options
| author | Jussi Pakkanen <jpakkane@gmail.com> | 2018-02-25 14:03:02 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2018-02-25 14:03:02 +0200 |
| commit | 8a68dc0179bc63303a8ef8c4a339cc01ca406084 (patch) | |
| tree | 9ee89c663207c3f5cfd5e16f42ff24ea16727879 /test cases/csharp/1 basic/prog.cs | |
| parent | f1ce7af2d5866b5207c1f4036477a175f433655c (diff) | |
| parent | 67f3f803620cdf5cbabd2757211cb4c969ccf41f (diff) | |
| download | meson-8a68dc0179bc63303a8ef8c4a339cc01ca406084.tar.gz | |
Merge pull request #3132 from mesonbuild/csc
Visual Studio C# compiler support and some fixes
Diffstat (limited to 'test cases/csharp/1 basic/prog.cs')
| -rw-r--r-- | test cases/csharp/1 basic/prog.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test cases/csharp/1 basic/prog.cs b/test cases/csharp/1 basic/prog.cs index dfb24002b..6ee47b074 100644 --- a/test cases/csharp/1 basic/prog.cs +++ b/test cases/csharp/1 basic/prog.cs @@ -1,7 +1,8 @@ using System; - + public class Prog { static public void Main () { - Console.WriteLine("C# is working."); + TextGetter tg = new TextGetter(); + Console.WriteLine(tg.getText()); } } |
