mirror of
https://github.com/fluencelabs/aqua.git
synced 2025-03-15 19:50:51 +00:00
11 lines
201 B
Plaintext
11 lines
201 B
Plaintext
|
service Op2("op"):
|
||
|
identity(s: u64)
|
||
|
|
||
|
service Peer("peer"):
|
||
|
timestamp_sec: -> u64
|
||
|
|
||
|
func getTwoResults():
|
||
|
on "other node":
|
||
|
co on "x":
|
||
|
z <- Peer.timestamp_sec()
|
||
|
Op2.identity(z)
|