mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-04-01 05:41:14 +00:00
7 lines
169 B
Plaintext
7 lines
169 B
Plaintext
service StringExtra("service-id"):
|
|
addNameToHello: string -> string
|
|
|
|
func helloWorld(name: string) -> string:
|
|
res <- StringExtra.addNameToHello(name)
|
|
<- res
|