meat/lib/commands/yum.ml
atagen 703ac28f52
All checks were successful
Nix Build / nix build (push) Successful in 1m1s
refactor, hunt
2026-03-23 22:38:33 +11:00

7 lines
232 B
OCaml

let run () =
print_string Common.header;
Common.meat_print "CONSUMING DELICIOUS MEATS..";
( Common.do_build () |> function
| Error _ -> print_string "FAILED TO CONSUME MEATS."
| _ -> () );
print_string Common.footer