index
:
compiler-explorer
local
main
compiler explorer
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
examples
/
v
/
default.v
blob: 4f99e15c3fac5332ae2ae836527808dc2568cff9 (
plain
)
1
2
3
4
5
6
7
fn
square
(
num
int
)
int
{
return
num
*
num
}
fn
main
()
{
println
(
square
(
3
))
}