mirror of
https://github.com/mii443/encrypt.git
synced 2025-08-22 15:05:33 +00:00
10 lines
118 B
Plaintext
10 lines
118 B
Plaintext
|
|
#[server(ip = "localhost:8080")]
|
|
fn add(a: num, b: num) {
|
|
return a + b;
|
|
}
|
|
|
|
fn main() {
|
|
println(add(1, 2));
|
|
}
|