Powered by AppSignal & Oban Pro
Would you like to see your link here? Contact us

Strings

drills/strings.livemd

Strings

Drills

The concatonate Operator <>

We can do these a couple different styles. Style #1 is below:

# use the concatonate operator <> to tie strings together

# Tie "Tomorrow is " and "Another Day" together
"Tomorrow is " <> "another day"

# Tie "Wordle is " "a turtle" together
"Wordle is " <> "a turtle"

Style 2:

# Tie "I'm going slightly" and "mad like the hatter." together
"I'm going slightly" <> " mad like the hatter."
# Tie "Which way does the " and "wind blowwwww" together
"Which way does the " <> "wind blowwww"