mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-15 21:51:04 +00:00
check wildcard compilation
This commit is contained in:
parent
c9872cdc51
commit
4184a9ca35
5
aqua/examples/imports_exports/export3.aqua
Normal file
5
aqua/examples/imports_exports/export3.aqua
Normal file
@ -0,0 +1,5 @@
|
||||
-- exports3.aqua
|
||||
module Export3 declares *
|
||||
|
||||
func foo() -> string:
|
||||
<- "I am MyFooBar foo"
|
10
aqua/examples/imports_exports/import3.aqua
Normal file
10
aqua/examples/imports_exports/import3.aqua
Normal file
@ -0,0 +1,10 @@
|
||||
-- imports3.aqua
|
||||
module Import3 declares *
|
||||
|
||||
export foo_wrapper
|
||||
|
||||
use "export3.aqua"
|
||||
|
||||
func foo_wrapper() -> string:
|
||||
z <- Export3.foo()
|
||||
<- z
|
Loading…
x
Reference in New Issue
Block a user