aboutsummaryrefslogtreecommitdiffstats
path: root/alee.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2023-02-09 18:20:35 -0500
committerClyne Sullivan <clyne@bitgloo.com>2023-02-09 18:20:35 -0500
commit501ca28d509bf6f41ed5797fa68f07e37ab9a294 (patch)
tree4c100967b4393b95c81e644da8280e83aacf47ee /alee.cpp
parent5bc9e4d2add7d2185b2c57a18ebd15b31f5366bd (diff)
add more core.fth words
Diffstat (limited to 'alee.cpp')
-rw-r--r--alee.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/alee.cpp b/alee.cpp
index 1232aa6..f87831f 100644
--- a/alee.cpp
+++ b/alee.cpp
@@ -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)