With a helper verb such as the following: ```r run_with_progress <- function(.env, until=1000, steps=10) { for (i in seq(until/steps, until, until/steps)) { run(.env, until=i) message(paste0(100*i/until, "%")) } .env } ```
With a helper verb such as the following: