From 9b2d3545b72344e9960c35794e7938bcb9c5558c Mon Sep 17 00:00:00 2001 From: Mike Nolan Date: Sun, 19 Apr 2026 21:33:35 -0500 Subject: [PATCH] Add inspiring message (thats an understatement) --- CMakeLists.txt | 5 +++++ README.md | 4 ++++ main.c | 9 +++++++++ 3 files changed, 18 insertions(+) create mode 100644 CMakeLists.txt create mode 100644 main.c diff --git a/CMakeLists.txt b/CMakeLists.txt new file mode 100644 index 0000000..77cda87 --- /dev/null +++ b/CMakeLists.txt @@ -0,0 +1,5 @@ +cmake_minium_required(VERSION 3.16) + +project(my-first-brew) + +add_executable(my-first-brew main.c) diff --git a/README.md b/README.md index e69de29..3772fa8 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,4 @@ +My first brew +============= + +Yep diff --git a/main.c b/main.c new file mode 100644 index 0000000..c547bb0 --- /dev/null +++ b/main.c @@ -0,0 +1,9 @@ +#include + +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; +}