diff options
Diffstat (limited to 'xmake/templates/csharp/console/src/Program.cs')
| -rw-r--r-- | xmake/templates/csharp/console/src/Program.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/xmake/templates/csharp/console/src/Program.cs b/xmake/templates/csharp/console/src/Program.cs new file mode 100644 index 000000000..5f75209cb --- /dev/null +++ b/xmake/templates/csharp/console/src/Program.cs @@ -0,0 +1,9 @@ +using System; + +namespace ${TARGET_NAME}; + +class Program { + static void Main(string[] args) { + Console.WriteLine("Hello, xmake!"); + } +} |
