printify 1.0.1

New functionality

new_in_place_steps <- function(){
    print_start_message()
    
    print_step("MAJOR", "Let's get started...")
    
    for (i in seq_len(10)){
        print_step("Minor", "This is in place step [i] of 10", i = i, in_place = TRUE)
        Sys.sleep(0.25)
    }
    
    print_step("MAJOR", "Loop has ended")
    
    print_closing()
}


new_in_place_steps()

Changed functionality

Fixed

Additionally

printify 1.0.0