aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/01-hello.c
blob: 69a835491cac6d1e13a92e80a79fc48bea060427 (plain) (blame)
1
2
3
4
5
6
7
8
/* EXPECT:
hello world
*/

#include <stdio.h>
int main(int argc, char **argv) {
   printf("hello world\n");
}