diff --git a/bin/.gitkeep b/bin/.gitkeep new file mode 100644 index 0000000..e69de29 diff --git a/makefile b/makefile new file mode 100644 index 0000000..ff1618c --- /dev/null +++ b/makefile @@ -0,0 +1,5 @@ +CC = g++ +CFLAGS = -Wall -O2 + +all: + $(CC) $(CFLAGS) -o ./bin/quicknote ./src/main.cpp \ No newline at end of file diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..3d4f688 --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,7 @@ +#include + +int main(int argc, char *argv[]) +{ + std::cout << "quicknote!" << std::endl; + return 0; +} \ No newline at end of file