mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-05-01 08:52:30 +00:00
9 lines
179 B
Plaintext
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
|