diff options
author | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-28 08:55:09 -0500 |
---|---|---|
committer | Clyne Sullivan <clyne@bitgloo.com> | 2024-11-28 08:55:09 -0500 |
commit | 27aa055f59eff62bb7fe054ab9464d6ff2dd412f (patch) | |
tree | da20aa5b913d608f8bd8907ca5b4f3b9d8ab84c8 /main.cpp | |
parent | c943ec606bfec0d5571609ff17dffd9b46ecb877 (diff) |
pointer and cast cleanup
Diffstat (limited to 'main.cpp')
-rw-r--r-- | main.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -38,6 +38,7 @@ int main(int argc, const char *argv[]) std::cout << buf << ' '; }); fth->add("emit", [](auto) { std::cout << static_cast<char>(fth->pop()); }); + fth->add("dictsize", [](auto) { fth->push(dict.size() * sizeof(forth::cell)); }); for (auto arg : args) { if (std::ifstream file {arg}; parse_stream(fth, file)) |