diff --git a/Readme.md b/Readme.md new file mode 100644 index 0000000..b95c050 --- /dev/null +++ b/Readme.md @@ -0,0 +1,19 @@ +# JADE + +### *(Jade’s A Development Experiment)* + +### JADE is a set of include files with Macros and Functions that seeks to provide a Basic-Like way of creating c++ code. + +### Compile with: + +`g++ -Wall demo.cpp -o demo ` + +### or if using clang, use: + +`clang++ demo.cpp -o demo` + +### This is a proof of concept of using a BASIC-like syntax to program C++. + +### For the list of current Keywords, see the Keywords.txt file + +### For the Function/Sub prototypes, see the Prototypes.txt file diff --git a/readme.txt b/readme.txt deleted file mode 100644 index eea8af7..0000000 --- a/readme.txt +++ /dev/null @@ -1,7 +0,0 @@ -Compile with: g++ -Wall demo.cpp -o demo (or if using clang, use clang++ demo.cpp -o demo) - -This is just a proof of concept of using a BASIC-like syntax to program C++. - -For the list of current Keywords, see the Keywords.txt file - -For the Function/Sub prototypes, see the Prototypes.txt file \ No newline at end of file diff --git a/sdl_test/readme.txt b/sdl_test/readme.txt index 9f7a757..e405418 100644 --- a/sdl_test/readme.txt +++ b/sdl_test/readme.txt @@ -1,3 +1,5 @@ -Ccompile with: +Simple SDL Test. -g++ -ldl $(sdl-config --libs --cflags) -lSDL_image -lSDL_ttf test.cpp -o test -std=c++11 +Compile with: + +g++ test.cpp $(sdl-config --libs --cflags) -ldl -lSDL_image -lSDL_ttf -o test