Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
6e5c0ce4bfd10fec2b3535664c9321be62e074e2
/
.
/
examples
/
csharp
/
default.cs
blob: c6528e1e7327af18710ec30f4edc5a1114129d01 [
file
] [
log
] [
blame
] [
raw
]
using
System
;
class
Program
{
static
int
Square
(
int
num
)
=>
num
*
num
;
static
void
Main
()
=>
Console
.
WriteLine
(
Square
(
42
));
}