mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-05-28 13:51:36 +00:00
10 lines
170 B
Plaintext
10 lines
170 B
Plaintext
|
data Prod:
|
||
|
value: string
|
||
|
|
||
|
service OpHa("op"):
|
||
|
identity(a: string) -> string
|
||
|
|
||
|
func doSmth(arg: Prod) -> string:
|
||
|
v = arg.value
|
||
|
a <- OpHa.identity(v)
|
||
|
<- a
|