mirror of
https://github.com/compiler-explorer/compiler-explorer.git
synced 2025-12-27 14:04:04 -05:00
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(Square(42));
|
|
}
|