diff options
Diffstat (limited to 'starts/meaning-vm/level1.cpp')
-rw-r--r-- | starts/meaning-vm/level1.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/starts/meaning-vm/level1.cpp b/starts/meaning-vm/level1.cpp index b1d06f1..aa945b3 100644 --- a/starts/meaning-vm/level1.cpp +++ b/starts/meaning-vm/level1.cpp @@ -10,6 +10,7 @@ int main() std::cout << intellect::level0::allocated() << " allocated" << std::endl; decls(make, linked, habit); + std::cout << intellect::level0::allocated() << " allocated" << std::endl; decls(needs, assumes, makes); decls(not, topic); decls(A, B, C); @@ -64,7 +65,7 @@ int main() std::cout << apple.dump("dumped", true) << std::endl; std::cout << intellect::level0::allocated() << " allocated" << std::endl; - intellect::level0::dealloc(intellect::level0::concepts::allocations(), intellect::level0::concepts::level0allocations()); + intellect::level0::dealloc(intellect::level0::concepts::allocations(), intellect::level0::concepts::allocations()); std::cout << intellect::level0::allocated() << " allocated" << std::endl; return 0; |