You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: RELEASE.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ Many thanks to the [contributors](https://github.com/paf31/purescript/graphs/con
10
10
- Mutually recursive functions and types are now allowed within a module.
11
11
- Syntactic sugar for patterns in top-level declarations has been added. For example:
12
12
13
-
sum [] _ = []
13
+
sum [] = 0
14
14
sum (x:xs) = x + sum xs
15
15
16
16
- 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