mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-04-02 00:41:22 +00:00
10 lines
207 B
Plaintext
10 lines
207 B
Plaintext
|
func streamFold(arr: []string) -> []string:
|
||
|
res: *string
|
||
|
for n <- arr:
|
||
|
res <<- n
|
||
|
<- res
|
||
|
|
||
|
func streamRes(arr: []string) -> []string, []string:
|
||
|
res: *string
|
||
|
res2 <- streamFold(arr)
|
||
|
<- res, res2
|