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