mirror of
https://github.com/fluencelabs/aqua.git
synced 2025-03-15 19:50:51 +00:00
* Fix for export in headerless file * Ability arrow resolution bugfix * Trying to reproduce a bug * Allow dots in module declaration
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() |