diff options
Diffstat (limited to 'hello/Program.cs')
-rw-r--r-- | hello/Program.cs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/hello/Program.cs b/hello/Program.cs new file mode 100644 index 0000000..9cd008e --- /dev/null +++ b/hello/Program.cs @@ -0,0 +1,8 @@ +namespace hello; +class Program +{ + static void Main(string[] args) + { + Console.WriteLine("Hello, World!"); + } +} |