aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
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) {