aqua-playground/aqua/examples/pushToStream.aqua
2021-07-23 16:47:31 +03:00

9 lines
179 B
Plaintext

service OpA("pop"):
get_str() -> string
func get_results() -> []string:
results: *string
results <<- "hello"
str <- OpA.get_str()
results <<- str
<- results