mirror of
https://github.com/fluencelabs/aqua.git
synced 2024-12-12 09:45:32 +00:00
14 lines
226 B
Plaintext
14 lines
226 B
Plaintext
aqua A
|
|
|
|
export newFunc
|
|
|
|
func returnNil() -> *string:
|
|
someStr: *string
|
|
<- someStr
|
|
|
|
func newFunc() -> []string:
|
|
-- new stream
|
|
stream <- returnNil() -- stream -> someStr: *str
|
|
stream <<- "asd"
|
|
<- stream
|
|
-- end |