aboutsummaryrefslogtreecommitdiff
path: root/test/first_party/src/test_hello_world.c
blob: d855757639179613a724aa7f9669081579b2e73a (plain)
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;
}