1 2 3 4 5 6 7 8
// Simple hello world example. #include "common/runtime.h" int main() { printf("Hello %s%c %d %u %f\n", "world", '!', 1, 2, 3.f); return 0; }