aboutsummaryrefslogtreecommitdiffhomepage
path: root/examples/hello.c
blob: 5dce624f7e26a136bb6c5f365e97838805c1b29e (plain)
1
2
3
4
5
int printf(const char*, ...);

int main() {
    printf("Hello, World!\n");
}