aqua/aqua-src/export.aqua
2021-09-07 11:09:48 +03:00

19 lines
328 B
Plaintext

module Export.Test declares foobar, foo, bar, ExpSrv, FA
const FA = "constant"
func bar() -> string:
<- " I am MyFooBar bar"
func foo() -> string:
<- "I am MyFooBar foo"
func foobar() -> []string:
res: *string
res <- foo()
res <- bar()
<- res
service ExpSrv("exp-srv"):
baz()
log: string -> ()