Files
comp2510/lab01/hello.c
T
2025-09-15 18:52:55 -07:00

8 lines
75 B
C

#include <stdio.h>
int main() {
printf("Hello World\n");
return 0;
}