Skip to content

Commit

Permalink
Create hello.c
Browse files Browse the repository at this point in the history
Meh. Simple. Easy. Fast.
  • Loading branch information
DamieFC authored Mar 3, 2021
1 parent 9559893 commit 76f6ae4
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions src/hello.c
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
/*******************************************************************************
* This file, hello.c, is licensed under the Unlicese. See the file "LICENSE" *
* for details. *
* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * *
* Says hello and exits. *
*******************************************************************************/

#include <stdio.h>

int main(){
printf("Hello!");
return 0
}

0 comments on commit 76f6ae4

Please sign in to comment.