6 lines
95 B
Text
6 lines
95 B
Text
some_func := func() {
|
|
return "THE RET VALUE OF SOME FUNC"
|
|
}
|
|
export({
|
|
some_func: some_func
|
|
})
|