mirror of
https://codeberg.org/ProgramSnail/lang_2023.git
synced 2025-12-06 06:58:45 +00:00
8 lines
98 B
Text
8 lines
98 B
Text
|
|
decl print : String -> Unit
|
||
|
|
|
||
|
|
decl func : String -> Int
|
||
|
|
def func : s = {
|
||
|
|
; print: s
|
||
|
|
return 5
|
||
|
|
}
|