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

Challenge: Simple Nested

Please write your answers for the simple nested challenge below

HTML <div>

Challenge

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

Solution

paste("hello", "there")
"hello there"

{dovetail}

Challenge

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

Solution

paste("hello", "there")
"hello there"

pandoc fenced div

Challenge

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

Solution

paste("hello", "there")
"hello there"

HTML <div>

Challenge

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

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"

{dovetail}

Challenge

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

School Solution

paste("hello", "there")
"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”

Fast Solution

paste0("mono", "rail")
"monorail"

:::::::::::::::::::::::::::::::