CS2263/Labs/Lab1/C/HelloWorld.c
2023-05-22 23:28:51 -03:00

5 lines
81 B
C

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