mirror of
https://github.com/fluencelabs/aqua-playground
synced 2025-05-10 07:27:25 +00:00
13 lines
376 B
Plaintext
13 lines
376 B
Plaintext
service Testo("testo"):
|
|
getString: string -> string
|
|
|
|
service LocalPrint("lp"):
|
|
print: string -> ()
|
|
|
|
|
|
func topologyTest(me: string, myRelay: string, friend: string, friendRelay: string) -> string:
|
|
on friend via friendRelay:
|
|
str2 <- Testo.getString("friends string via")
|
|
par LocalPrint.print("my string in par")
|
|
LocalPrint.print(str2)
|
|
<- "finish" |