Exercise 1: Use the let structure inside a function f1 to define a local variable b with
the value "funcy". Then use the str function to combine two bs into "funcyfuncy".
Exercise 2: Define a function small? that returns true for numbers under 100.
# true
# false
Exercise 3: Define a function message that has three cases:
# -> "Boink!"
# -> "Oink!"
# -> "Pong"
Exercise 4: Reimplement message using the if structure.
Exercise 5: Reimplement message using the cond structure.
Exercise 6: Reimplement message using the case structure.
Exercise 7: Use the loop structure to add 1 to an empty vector until it has 10 elements.