aboutsummaryrefslogtreecommitdiff
path: root/tests/hello_world.amal
blob: 7c68d3f9f2fc2b92166e6ce8ae69fcaf59b984f2 (plain)
1
2
3
4
5
extern const printf: fn(fmt: &c_char, ...) c_int;

const main = fn {
    printf("hello, world!\n");
}