The macro should enable how many times a process can be restarted. ```rust #[fort::root(max_retries=4)] fn main { panic!("Killed"); } ``` ## Process output ``` Killed Killed Killed Killed ```