Skip to content

Instantly share code, notes, and snippets.

@PedroHLC
Created July 11, 2017 00:04
Show Gist options
  • Save PedroHLC/3bbb128e0355190931fbb8e258eca438 to your computer and use it in GitHub Desktop.
Save PedroHLC/3bbb128e0355190931fbb8e258eca438 to your computer and use it in GitHub Desktop.
inline condition in Elm
(?) : Bool -> ( a, a ) -> a
(?) cond ( ifTrue, ifFalse ) =
if cond then
ifTrue
else
ifFalse
(?) : a -> a -> ( a, a )
(?) ifTrue ifFalse =
( ifTrue, ifFalse )
infixr 8 ?
infixr 9 ?
text = True ? "HELLO" ¬ "WORLD"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment