aqua-playground/aqua/examples/streamRestriction.aqua

10 lines
207 B
Plaintext
Raw Normal View History

2021-11-15 16:15:29 +03:00
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