aqua-playground/aqua/examples/recursiveStreams.aqua

14 lines
260 B
Plaintext
Raw Normal View History

service YesNoService("yesno"):
get() -> string
2022-03-10 12:44:09 +03:00
func recursiveStream() -> []string, []string:
result: *string
loop: *string
loop <<- "yes"
for l <- loop:
if l == "yes":
loop <- YesNoService.get()
result <<- "success"
2022-03-10 12:44:09 +03:00
<- result, loop