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

7 lines
90 B
C
Raw Normal View History

2019-03-21 15:03:02 +00:00
#include <stdio.h>
// vim: set ts=4 sw=4 tw=80 et:
int main() {
printf("Hello\n");
}