Files
my-first-brew/main.c
Mike Nolan 153874fa8a
Some checks failed
Build and Deploy on Tag / build-arch (push) Failing after 3s
Fix
2026-04-20 04:28:45 -05:00

11 lines
300 B
C

#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);
printf("GOD's NOT DEAD\n");
return 0;
}