Merge branch 'master' into options

This commit is contained in:
DieMyst 2021-09-09 16:00:52 +03:00
commit 3b944d9589
2 changed files with 15 additions and 0 deletions

View File

@ -0,0 +1,5 @@
-- exports3.aqua
module Export3 declares *
func foo() -> string:
<- "I am MyFooBar foo"

View File

@ -0,0 +1,10 @@
-- imports3.aqua
module Import3 declares *
export foo_wrapper
use "export3.aqua"
func foo_wrapper() -> string:
z <- Export3.foo()
<- z