const std = @import("std");
const types = @import("../types.zig");
pub fn execute(ctx: types.CommandContext) !void {
try ctx.stdout.writeStreamingAll(
ctx.io,
"\x1b[2J\x1b[H",
);
}