diff options
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -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) { |