meat/lib/commands/yum.ml
2026-05-19 23:38:14 +10: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