jade/Readme.md

23 lines
591 B
Markdown
Raw Permalink Normal View History

2013-11-08 04:28:08 +00:00
# JADE
2013-11-09 02:16:48 +00:00
### *(Jades A Developing Experiment)*
2013-11-08 04:28:08 +00:00
### 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`
2013-11-09 02:17:38 +00:00
### This is a proof of concept using a BASIC-like syntax to program C++.
2013-11-08 04:28:08 +00:00
### For the list of current Keywords, see the Keywords.txt file
### For the Function/Sub prototypes, see the Prototypes.txt file
2013-11-12 00:06:38 +00:00
2013-11-15 03:18:10 +00:00
### To use, copy "jade.h", "header.inc" and "runtime.inc" to your project folder and #include "jade.h"
2022-11-25 17:17:42 +00:00