A music player that connects to your cloud/distributed storage.
at main 121 B view raw
1module Tuple.Ext exposing (uncurry) 2 3-- 🔱 4 5 6uncurry : (a -> b -> c) -> ( a, b ) -> c 7uncurry fn ( a, b ) = 8 fn a b