Rivoreo Source Code Repositories
src.rivoreo.one
/
compiler-explorer
/
e93fc860feca3a3097a74e5f9d48f2de9de2d8a0
/
.
/
examples
/
jakt
/
hello_world.jakt
blob: 07e7ec76dd64a9c9674e466554687a8cb47b5fd9 [
file
] [
log
] [
blame
] [
raw
]
function
hello
()
throws
->
String
{
return
"Well, hello friends."
}
function
main
()
{
println
(
"{}"
,
hello
())
}