feat(furdb): add break command
This commit is contained in:
@@ -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
|
||||
|
||||
@@ -13,6 +13,7 @@ struct context {
|
||||
furvm::function_h mainFunction;
|
||||
|
||||
bool running = true;
|
||||
bool halt = false;
|
||||
|
||||
void run();
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user