I am trying to print a boolean result onto my screen using Elm 19.
result =
add 1 2 |> (\a -> modBy 2 a == 0)
main =
Html.text (String.fromBool result)
I know fromInt works when the equation spit out an Int but I don't know how to turn the bool into a String for my current problem.