1
0
mirror of https://github.com/fluencelabs/aqua-playground synced 2025-04-01 10:31:31 +00:00
2021-06-04 14:10:34 +03:00

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