summaryrefslogtreecommitdiff
path: root/software/hello/hello.c
blob: befc6eeb0e51eff37129fd92a3331169b2f1e59e (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>

int main()
{
  puts("hello world!\n");

  return 0;
}