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