Add inspiring message (thats an understatement)

This commit is contained in:
2026-04-19 21:33:35 -05:00
parent 43b5116f80
commit 9b2d3545b7
3 changed files with 18 additions and 0 deletions

9
main.c Normal file
View File

@@ -0,0 +1,9 @@
#include <stdio.h>
const char* VERSE = "John 3:16 says: For God so loved the world that he gave his one and only Son,\nthat whoever believes in him shall not perish but have eternal life.\n";
int main(int argc, char** argv)
{
printf("%s",VERSE);
return 0;
}