mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-04-01 03:41:19 +00:00
12 lines
356 B
Plaintext
12 lines
356 B
Plaintext
import "@fluencelabs/aqua-lib/builtin.aqua"
|
|
|
|
-- this service is used by fldist to print something into console
|
|
service Return("returnService"):
|
|
-- fldist service can accept any number of arguments of any type. Feel free to update accordingly
|
|
run: Info -> ()
|
|
|
|
func test(node: string):
|
|
on node:
|
|
res <- Peer.identify()
|
|
Return.run(res)
|