const std = @import("std"); const Allocator = std.mem.Allocator; const types = @import("./lib/types.zig"); const CommandStatus = types.CommandStatus; const CommandContext = types.CommandContext; pub const Ver = struct { pub fn eval(ver: Ver, ctx: CommandContext) !CommandStatus { _ = ver; const output = \\ \\MB-DOS Version 6.22 \\ (C)Copyright Mulkrosoft Corp 1985-1925. \\ \\ ; var writer = ctx.output_writer; try writer.write(output); return CommandStatus{ .Code = 0 }; } };