feat(furdb): add break command

This commit is contained in:
2026-08-16 20:01:52 +02:00
parent b3ce4fa0ed
commit a4966a057c
6 changed files with 48 additions and 4 deletions
+5
View File
@@ -36,4 +36,9 @@ public:
void execute(context& ctx, const command_info& info) override;
};
class break_command final : public command {
public:
void execute(context& ctx, const command_info& info) override;
};
#endif // COMMAND_HPP
+1
View File
@@ -13,6 +13,7 @@ struct context {
furvm::function_h mainFunction;
bool running = true;
bool halt = false;
void run();
};