See Original text in context
multi method kill(Proc::Async: Signal \signal = SIGHUP)
multi method kill(Proc::Async: Int \signal)
multi method kill(Proc::Async: Str \signal)
Sends a signal to the running program. The signal can be a signal name ("KILL" or "SIGKILL"), an integer (9) or an element of the Signal
enum (Signal::SIGKILL); by default and with no argument, the SIGHUP
signal will be used.