Add inspiring message (thats an understatement)
This commit is contained in:
5
CMakeLists.txt
Normal file
5
CMakeLists.txt
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
cmake_minium_required(VERSION 3.16)
|
||||||
|
|
||||||
|
project(my-first-brew)
|
||||||
|
|
||||||
|
add_executable(my-first-brew main.c)
|
||||||
9
main.c
Normal file
9
main.c
Normal 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;
|
||||||
|
}
|
||||||
Reference in New Issue
Block a user