open-sorcerers / madlib

Madlib: a compile-to-JS language written in Haskell, designed to make writing code a delight
https://github.com/madlib-lang/madlib
BSD 3-Clause "New" or "Revised" License
3 stars 0 forks source link

Allow for fewer parentheses in type signatures #37

Closed brekk closed 3 years ago

brekk commented 3 years ago

Right now we have to do:

ap :: List ((a -> b)) -> List a -> List b

but we should be able to simply do:

ap :: List (a -> b) -> List a -> List b