vignettes/hello.Rmd
hello.Rmd
This vignette briefly shows an example of how the dummy package hello and its function hello() can be used in a workflow.
hello()
Load packages:
library(hello)
You can use the function hello() to add the word Hello in front of a string. For example, for the word world:
string <- 'world' example <- hello(word = string) print(example) #> [1] "Hello world"
This gives the output Hello world
Hello world