diff options
author | Alon Zakai <alonzakai@gmail.com> | 2015-10-31 15:48:08 -0700 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2015-10-31 15:48:08 -0700 |
commit | 6512f29a40c72979c05e73318b957e425363980e (patch) | |
tree | 7d4127f6d1f61b7de799b4e3ff08f214ed554e1c /test/hello_world.c | |
parent | 547867eb0e78cac6be7f35bbd80c6582224df807 (diff) | |
download | binaryen-6512f29a40c72979c05e73318b957e425363980e.tar.gz binaryen-6512f29a40c72979c05e73318b957e425363980e.tar.bz2 binaryen-6512f29a40c72979c05e73318b957e425363980e.zip |
prepare for polyfill testing
Diffstat (limited to 'test/hello_world.c')
-rw-r--r-- | test/hello_world.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/test/hello_world.c b/test/hello_world.c new file mode 100644 index 000000000..eb47ea813 --- /dev/null +++ b/test/hello_world.c @@ -0,0 +1,7 @@ +#include<stdio.h> + +int main() { + printf("hello, world!\n"); + return 0; +} + |