aboutsummaryrefslogtreecommitdiff
path: root/examples/hello-world.cff
blob: 998b5c258da8b23a0b9ea69a07163a914aa7e0eb (plain) (blame)
1
2
3
4
5
6
7
import "libc.hff";

extern fn main(argc int, argv **u8) int {
   argc += 1;
   printf("hello  %d %s\n", argc, *((argv + 2) - 1));
}