sys

A set of unix utils in hare!
Log | Files | Refs | README

commit 57ba49d96bde00162da6fe809e97b379f16e1ab5
parent b3dc25152c5bcb8a7b5009c689b077a1e6f950c3
Author: thing1 <thing1@seacrossedlovers.xyz>
Date:   Thu, 26 Feb 2026 18:41:17 +0000

removed oopsie

Diffstat:
D:wq | 26--------------------------
1 file changed, 0 insertions(+), 26 deletions(-)

diff --git a/:wq b/:wq @@ -1,26 +0,0 @@ -export type option = enum { - CANT, - WILL, - MUST, -}; - -export type cmdfn = fn(file: *lines, current: size, args: []str) void; - -export type cmds = struct { - // the char to call the command - cmd: rune, - // help text for the command - msg: str, - - // does the command allow a range - range: option, - - // does the command allow a repeater - repeat: option, - - // the number of arguments a cmd can take - args: size, - - // function - f: *cmdfn, -};