1module Conditional exposing (ifThenElse) 2 3-- 🔱 4 5 6ifThenElse : Bool -> a -> a -> a 7ifThenElse bool x y = 8 if bool then 9 x 10 11 else 12 y