20 lines
218 B
Markdown
20 lines
218 B
Markdown
# unreleased
|
|
|
|
* New tag syntax:
|
|
```hs
|
|
case x of
|
|
{ 1 -> something
|
|
; 2 -> another
|
|
}
|
|
```
|
|
is now written as
|
|
```hs
|
|
case x of
|
|
{ <1> -> something
|
|
; <2> -> another
|
|
}
|
|
```
|
|
|
|
# Release 1.0.0
|
|
|