#[server(ip = "localhost:8080")] fn add(a: num, b: num) { return a + b; } fn main() { println(add(1, 2)); }