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; +}