mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-05-11 22:57:23 +00:00
12 lines
204 B
Plaintext
12 lines
204 B
Plaintext
|
import "@fluencelabs/aqua-lib/builtin.aqua"
|
||
|
|
||
|
service OpH("op"):
|
||
|
identity(s: string) -> string
|
||
|
|
||
|
func a(b: string) -> string:
|
||
|
c <- OpH.identity(b)
|
||
|
<- c
|
||
|
|
||
|
func d(e: string) -> string:
|
||
|
f <- a(e)
|
||
|
<- f
|