time-to-botec/C/hello-world/hello-world.c
NunoSempere 57fc886bed feat: More progress
- Add C
- Time the different languages.
- Wrap Squiggle in a js runtime.
2022-12-01 15:04:37 +00:00

8 lines
109 B
C
Executable File

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