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