mirror of
https://github.com/mii443/encrypt.git
synced 2025-08-22 06:55:28 +00:00
9 lines
136 B
Plaintext
9 lines
136 B
Plaintext
fn main() #server {
|
|
println(receive());
|
|
let str: String;
|
|
str = "hello from server.";
|
|
send(str);
|
|
|
|
send(receive());
|
|
}
|