Creates a text file with arbitrary contents
Examples
dsl_init()
#> ✔ Creating a clean tic stage configuration
#> ℹ See `?tic::dsl_get` for details
get_stage("script") %>%
add_step(step_write_text_file("Hi!", path = "hello.txt"))
#> Superclass TicStep has cloneable=FALSE, but subclass WriteTextFile has cloneable=TRUE. A subclass cannot be cloneable when its superclass is not cloneable, so cloning will be disabled for WriteTextFile.
dsl_get()
#> ── tic configuration summary ───────────────────────────────────────────────────
#> ── Stage: script ───────────────────────────────────────────────────────────────
#> ▶ step_write_text_file("Hi!", path="hello.txt")
