This lesson is still being designed and assembled (Pre-Alpha version)

HTML <div>

### Challenge Use the paste() function to concatenate the strings “hello” and “there”. <div class = "solution> ### Solution r paste("Hello", "there!")

"Hello there!

{dovetail}

#Use thepaste()function to concatenate the strings “hello” and “there”. # #@solution Solution # #```r paste("Hello", "there!") # #` #`output “Hello there!” #`

pandoc fenced div

Challenge

Use the paste() function to concatenate the strings “hello” and “there”.

Solution

paste("Hello", "there!")
"Hello there!

HTML <div>

### Challenge Use the paste() function to concatenate the strings “hello” and “there”.

<div class = "solution> ### School Solution r paste("Hello", "there!")

"Hello there!

Great! Now use paste0() to paste together “mono” and “rail” to make “monorail”

<div class = "solution> ### Fast Solution r paste0("mono", "rail")

monorail

{dovetail}

#Use thepaste()function to concatenate the strings “hello” and “there”. # #@solution School Solution # #```r paste("Hello", "there!") # #` #`output “Hello there!” ## Great! Now use paste0() to paste together “mono” and “rail” to make #"monorail” # #@solution Fast Solution # #```r paste0("mono", "rail") # #`output monorail #` ```

pandoc fenced div

Challenge

Use the paste() function to concatenate the strings “hello” and “there”.

School Solution

paste("Hello", "there!")
"Hello there!

Great! Now use paste0() to paste together “mono” and “rail” to make “monorail”

Fast Solution

paste0("Mono", "rail")
Monorail