Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
joshheyse-tsify_more_tests
/
.
/
examples
/
jakt
/
default.jakt
blob: 36108b2bf7c59a5421f4b3fb9e79666d63c72fbb [
file
] [
log
] [
blame
] [
raw
]
function
square
(
num
:
i32
)
->
i32
{
return
num
*
num
}
function
main
()
throws
->
c_int
{
return
square
(
num
:
3
)
as
!
c_int
}