mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 22:50:18 +00:00
14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
|
module Export declares foobar, foo
|
||
|
|
||
|
func bar() -> string:
|
||
|
<- " I am MyFooBar bar"
|
||
|
|
||
|
func foo() -> string:
|
||
|
<- "I am MyFooBar foo"
|
||
|
|
||
|
func foobar() -> []string:
|
||
|
res: *string
|
||
|
res <- foo()
|
||
|
res <- bar()
|
||
|
<- res
|