mirror of
https://github.com/Noratrieb/libuwuc.git
synced 2026-01-14 11:45:05 +01:00
8 lines
188 B
C
8 lines
188 B
C
#include <stdio.h>
|
|
#include <assert.h>
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
int result = printf("Hello, world!\n");
|
|
assert((result == 14) && "printf returned wrong number of chars");
|
|
}
|