mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-04 14:40:17 +00:00
19 lines
328 B
Plaintext
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 -> () |