This file contains 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
/**** | |
cxxforth: A Simple Forth Implementation in C++ | |
============================================== | |
by Kristopher Johnson | |
<https://github.com/kristopherjohnson/cxxforth> | |
---- |
This file contains 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
#include <stdlib.h> | |
#include <stdio.h> | |
#include <string> | |
std::string g_sOut; | |
std::string g_sIn; | |
int g_nInPos = 0; | |