mirror of
https://github.com/theoludwig/programming-challenges.git
synced 2025-12-11 00:21:24 +01:00
feat(languages): add C# support
This commit is contained in:
15
templates/solution/cs/Solution.cs
Normal file
15
templates/solution/cs/Solution.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
namespace Solution
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main()
|
||||
{
|
||||
string line;
|
||||
while ((line = System.Console.ReadLine()) != null)
|
||||
{
|
||||
|
||||
System.Console.WriteLine($"Hello, {line}!");
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user