aqua-playground/aqua/examples/pushToStream.aqua

9 lines
179 B
Plaintext
Raw Normal View History

2021-07-23 16:47:31 +03:00
service OpA("pop"):
get_str() -> string
func get_results() -> []string:
results: *string
results <<- "hello"
str <- OpA.get_str()
results <<- str
<- results