Go to file
2022-12-10 23:27:31 -05:00
fltk Fixed error in Makefile 2013-11-10 04:06:56 -05:00
QT4/TinyTimes Added Makefile to fltkdemo 2013-11-09 23:39:58 -05:00
SDL2 Added -Wall to Makefiles 2013-11-10 23:06:52 -05:00
sdl_test Added -Wall to Makefiles 2013-11-10 23:06:52 -05:00
SFML2 SFML2 JADE Added 2013-11-10 16:29:35 -05:00
wx/help Deleted unused variables 2013-11-11 18:53:10 -05:00
.gitignore updated to exclude test binaries 2022-11-24 23:56:26 -05:00
curl.inc Added CURL module 2018-11-01 04:20:09 -04:00
demo.cpp Added FORMAT$ command to runtime 2013-11-14 22:14:30 -05:00
generate-keywords.sh Updated generate-keywords script to support MAP and VECTOR properly 2013-11-16 12:33:01 -05:00
header.inc updated STR 2018-11-02 21:35:04 -04:00
jade.h cleaned up spurious template declarations 2022-11-24 23:57:24 -05:00
jsort.cpp MergeSort Example Initial Commit 2015-03-29 22:45:43 -04:00
Keywords.txt Added REPEAT\$ Function 2022-12-10 23:27:31 -05:00
Prototypes.txt Added REPEAT\$ Function 2022-12-10 23:27:31 -05:00
Readme.md cleanup 2022-11-25 12:17:42 -05:00
runtime.inc Added REPEAT\$ Function 2022-12-10 23:27:31 -05:00
split-test.cpp Example of new SPLIT function 2013-11-16 12:35:33 -05:00

JADE

(Jades A Developing 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 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

To use, copy "jade.h", "header.inc" and "runtime.inc" to your project folder and #include "jade.h"