aqua-playground/aqua/examples/helloWorld.aqua

7 lines
169 B
Plaintext
Raw Permalink Normal View History

2021-04-15 12:30:42 +03:00
service StringExtra("service-id"):
addNameToHello: string -> string
2021-04-12 02:07:18 +03:00
func helloWorld(name: string) -> string:
res <- StringExtra.addNameToHello(name)
2021-04-14 17:32:01 +03:00
<- res