mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-15 19:51:13 +00:00
Merge branch 'master' into options
This commit is contained in:
commit
3b944d9589
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