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>

Use the + operator to concatenate the strings “hello” and “there” in R

Solution

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

{dovetail}

Challenge

U Use the + operator to concatenate the strings “hello” and “there” in R

Solution

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

pandoc fenced div

Challenge

Use the + operator to concatenate the strings “hello” and “there” in R

solution

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

Challenge: Complex Nested

Please write your answers for the complex nested challenge below

HTML <div>

Use the + operator to concatenate the strings “hello” and “there” in R

Solution

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

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

Solution

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

{dovetail}

Challenge

Use the + operator to concatenate the strings “hello” and “there” in R

Solution

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

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

Solution

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

pandoc fenced div

Challenge

Use the + operator to concatenate the strings “hello” and “there” in R

solution

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

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

solution

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