diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-26 07:48:52 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-26 07:48:52 -0500 |
commit | b40fba6baf84dcf8b6d4f108418e55f0da7b0730 (patch) | |
tree | 2b36518cbd7b544f6d6b62d1831203f67e00e0f2 /main.cpp | |
parent | 2820ff4559ab29afbd2c948149dc1eadf1632cf2 (diff) |
add base
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) { |