This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Syntax demo for writing Cheney on the MTA style code in C++11 | |
// (see http://home.pipeline.com/~hbaker1/CheneyMTA.html for more info) | |
// | |
// Using variadic macros, I managed to design a syntax that is good enough | |
// to write in, as opposed to the automated code generation that COTMTA | |
// originally envisioned. | |
// | |
// key reasons why I intend to use this: | |
// * Writing a Scheme interpreter that keeps the C stack compact |