diff options
Diffstat (limited to 'tests/hello_world.c')
-rw-r--r-- | tests/hello_world.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/hello_world.c b/tests/hello_world.c new file mode 100644 index 0000000..78f6c29 --- /dev/null +++ b/tests/hello_world.c @@ -0,0 +1,7 @@ +#include <ungrateful.h> + +int main(void) { + un_log_write(UN_LOG_INFO, un_string_from_cstring(UN_CSTR "Hello world!")); + + return 0; +} |