“foo” + “bar” !— TYPE MISMATCH ———————————————————The left argument of (+) is causing a type mismatch. 3|
“foo” + “bar” ^^^^^ (+) is expecting the left argument to be a: number But the left argument is: String Hint: To append strings in Elm, you need to use the (!++) operator, not (+). http:!//package.elm-lang.org/…