<div>### Challenge Use the paste() function to concatenate the strings “hello” and “there”. <div class = "solution> ### Solution r paste("Hello", "there!")
"Hello there!
#Use thepaste()function to concatenate the strings “hello” and “there”. # #@solution Solution # #```r paste("Hello", "there!") # #` #`output “Hello there!” #`
Use the paste() function to concatenate the strings “hello” and “there”.
<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
#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 #` ```