mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-04-01 11:31:16 +00:00
12 lines
205 B
Plaintext
12 lines
205 B
Plaintext
import "@fluencelabs/aqua-lib/builtin.aqua"
|
|
|
|
service OpH("opa"):
|
|
identity(s: string) -> string
|
|
|
|
func a(b: string) -> string:
|
|
c <- OpH.identity(b)
|
|
<- c
|
|
|
|
func d(e: string) -> string:
|
|
f <- a(e)
|
|
<- f |