wasmweb-sample/src/main.rs

6 lines
90 B
Rust

use math;
fn main() {
let sum = math::sum(1, 2);
println!("Sum number {}", sum)
}