mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 09:23:52 -05:00
* Support trunk and execution for .NET * Adjust compilers order * Support stdin * Update samples
8 lines
135 B
C#
8 lines
135 B
C#
using System;
|
|
|
|
class Program
|
|
{
|
|
static int Square(int num) => num * num;
|
|
static void Main() => Console.WriteLine(Sqaure(42));
|
|
}
|