oakc 0.6.1

A portable programming language with a compact backend
Documentation
1
2
3
4
5
6
7
8
9
10
11
12

#[if(TARGET == 'c') {
    #[extern("foreign.c")]
} else {
    #[if(TARGET == 'g') {
        #[extern("foreign.go")]
    } else {
        #[error("this program only supports go and c backends")]
    }]
}]

fn test() { test!() }