aqua-playground/aqua/examples/streamRestriction.aqua
2021-11-15 16:15:29 +03:00

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