haskell / haskell/stylish-haskell
UnicodeSyntax
Open
- Dominant language
- Haskell
- Stars
- 1k
- Forks
- 153
- PR merge metrics
- No merged PRs in 30d
Description
```
{-# language UnicodeSyntax #-}
module Main where
import Prelude qualified as A
data Term a where
Lit :: A.Int -> Term A.Int
Succ :: Term A.Int -> Term A.Int
IsZero :: Term A.Int -> Term A.Bool
If :: Term A.Bool -> Term a -> Term a -> Term a
Pair :: Term a -> Term b -> Term (a, b)
```
Here no instance of `->` gets converted to `→`.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.