Files
compiler-explorer/examples/csharp/default.cs
Steve 75b9d30485 Support trunk and execution for .NET (#4351)
* Support trunk and execution for .NET
* Adjust compilers order
* Support stdin
* Update samples
2022-11-27 10:14:35 -06:00

8 lines
135 B
C#

using System;
class Program
{
static int Square(int num) => num * num;
static void Main() => Console.WriteLine(Sqaure(42));
}