aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-11-26 07:48:52 -0500
committerClyne Sullivan <clyne@bitgloo.com>2024-11-26 07:48:52 -0500
commitb40fba6baf84dcf8b6d4f108418e55f0da7b0730 (patch)
tree2b36518cbd7b544f6d6b62d1831203f67e00e0f2 /main.cpp
parent2820ff4559ab29afbd2c948149dc1eadf1632cf2 (diff)
add base
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp6
1 files changed, 5 insertions, 1 deletions
diff --git a/main.cpp b/main.cpp
index d9cb5c5..2788b49 100644
--- a/main.cpp
+++ b/main.cpp
@@ -32,7 +32,11 @@ int main(int argc, const char *argv[])
std::span args (argv + 1, argc - 1);
forth::initialize<&fth>(dict.end());
- fth->add(".", [](auto) { std::cout << fth->pop() << ' '; });
+ fth->add(".", [](auto) {
+ char buf[32];
+ std::to_chars(buf, buf + sizeof(buf), fth->pop(), fth->base);
+ std::cout << buf << ' ';
+ });
fth->add("emit", [](auto) { std::cout << static_cast<char>(fth->pop()); });
for (auto arg : args) {