feat: add execute_all function

This commit is contained in:
David Bailey 2023-04-14 10:27:22 +02:00
parent 55030a7829
commit 96f54f13b6

View file

@ -142,5 +142,17 @@ module Comfpile
nil
end
def execute_all
step_count = 0
until @processing_stack.empty?
execute_step()
step_count += 1
end
puts "Done after #{step_count} exec loops..."
end
end
end