diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 18:20:35 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2023-02-09 18:20:35 -0500 |
commit | 501ca28d509bf6f41ed5797fa68f07e37ab9a294 (patch) | |
tree | 4c100967b4393b95c81e644da8280e83aacf47ee /alee.cpp | |
parent | 5bc9e4d2add7d2185b2c57a18ebd15b31f5366bd (diff) |
add more core.fth words
Diffstat (limited to 'alee.cpp')
-rw-r--r-- | alee.cpp | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -50,6 +50,9 @@ int user_sys(State& state) case 0: std::cout << state.pop() << std::endl; break; + case 1: + std::cout << static_cast<char>(state.pop()) << std::endl; + break; } return 0; @@ -63,7 +66,7 @@ void parseLine(Parser& parser, State& state, std::string_view line) } while (r == ParseStatus::Continue); if (r != ParseStatus::Finished) - std::cout << "r " << to_string(r) << std::endl; + std::cout << to_string(r) << ": " << line << std::endl; } void parseFile(Parser& parser, State& state, std::istream& file) |