Skip to contents

This vignette briefly shows an example of how the dummy package hello and its function hello() can be used in a workflow.

Setup

Load packages:

Hello function

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