Please write your answers for the simple nested challenge below
<div>
Use the `paste()`` function to concatenate the strings “hello” and “there” in R.
Use the `paste()`` function to concatenate the strings “hello” and “there” in R.
Use the `paste()`` function to concatenate the strings “hello” and “there” in R.
<div>
Use the `paste()`` function to concatenate the strings “hello” and “there” in R.
Great! Now use paste0()
to paste together “mono” and “rail” to make “monorail”
Use the `paste()`` function to concatenate the strings “hello” and “there” in R.
"hello there"
# ```
Great! Now use `paste0()` to paste together “mono” and “rail” to make “monorail”
<div class='solution' markdown='1'>
## Fast Solution
```r
paste0("mono", "rail")
"monorail"
# ```
</div>
</div>
</div>
## pandoc fenced div
::::::::::::::::::::::::::::::: challenge
## Challenge
Use the `paste()`` function to concatenate the strings “hello” and “there” in R.
:::::::::::::::::::: solution
## School Solution
```r
paste("hello", "there")
"hello there"
::::::::::::::::::::
Great! Now use paste0()
to paste together “mono” and “rail” to make “monorail”
:::::::::::::::::::::::::::::::