mirror of
https://github.com/fluencelabs/aqua.git
synced 2025-03-16 04:00:50 +00:00
16 lines
261 B
Plaintext
16 lines
261 B
Plaintext
|
module Export.Test declares foobar, foo, bar
|
||
|
|
||
|
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:
|
||
|
baz()
|