mercur 0.1.5

mercur - junolang package manager
1
2
3
4
5
6
7
8
9
10
import ./othermodule.juno;

decl http::othermodule::add(a: i32, b: i32) -> i32;

fn main() -> i32{
    printf("hello world\n");
    printf("1+1=%d\n", http::othermodule::add(1,1));

    return http::othermodule::add(5, -5);
}