mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-04-01 04:11:19 +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 |