mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-03-28 14:41:04 +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 |