Fixed typo in main.c

This commit is contained in:
Stephan Rehfeld 2025-10-21 15:08:43 +02:00
parent ea29212d3a
commit f20017067f

2
main.c
View File

@ -2,7 +2,7 @@
#include <stdlib.h>
int main(void) {
puts("Hello Wrld");
puts("Hello World");
return EXIT_SUCCESS;
}