This repository has been archived on 2021-10-31. You can view files and clone it, but cannot push or open issues or pull requests.
ProgrammingChallenges/hello.c
2019-03-28 17:14:30 +01:00

6 lines
97 B
C

#include <stdio.h>
// vim: set ts=4 sw=4 tw=80 et:
int main() {
printf("Hello World!\n");
}