1
0
mirror of https://github.com/fluencelabs/aqua-playground synced 2025-04-01 08:21:19 +00:00
2021-06-07 18:17:01 +03:00

13 lines
262 B
Plaintext

data Prod:
value: string
service OpHa("op"):
array(a: string, b: string) -> []string
identity(a: string) -> string
func doSmth(arg: Prod) -> []string:
v = arg.value
a <- OpHa.identity(v)
b = "hello"
res <- OpHa.array(a, b)
<- res