aboutsummaryrefslogtreecommitdiffstats
path: root/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2024-11-28 08:55:09 -0500
committerClyne Sullivan <clyne@bitgloo.com>2024-11-28 08:55:09 -0500
commit27aa055f59eff62bb7fe054ab9464d6ff2dd412f (patch)
treeda20aa5b913d608f8bd8907ca5b4f3b9d8ab84c8 /main.cpp
parentc943ec606bfec0d5571609ff17dffd9b46ecb877 (diff)
pointer and cast cleanup
Diffstat (limited to 'main.cpp')
-rw-r--r--main.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp
index 16de440..d3bbe42 100644
--- a/main.cpp
+++ b/main.cpp
@@ -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))