Skip to content

Commit bbdc8d6

Browse files
committed
Update RELEASE.md
1 parent 00e0cb3 commit bbdc8d6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

RELEASE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Many thanks to the [contributors](https://github.com/paf31/purescript/graphs/con
1010
- Mutually recursive functions and types are now allowed within a module.
1111
- Syntactic sugar for patterns in top-level declarations has been added. For example:
1212

13-
sum [] _ = []
13+
sum [] = 0
1414
sum (x:xs) = x + sum xs
1515

1616
- Basic support for type classes has been added. Polymorphic types of the form `forall a. (C a) => ...` will not be inferred but can be checked. Type inference still works if all type class instances can be determined. There is not yet support for functionality like GHC's `FlexibleInstances`, `FlexibleContexts` or `MultiParamTypesClasses`. For example:

0 commit comments

Comments
 (0)