A music player that connects to your cloud/distributed storage.
at main 154 B view raw
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