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
Claudio Maggioni 9d7dbd6d16 Initial commit
2019-03-21 16:03:02 +01:00

6 lines
90 B
C

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