haskellish alternatives and similar packages
Based on the "Language" category.
Alternatively, view haskellish alternatives based on common mentions on social networks and blogs.
-
stylish-haskell
DISCONTINUED. Haskell code prettifier [Moved to: https://github.com/haskell/stylish-haskell] -
ministg
Ministg is an interpreter for a high-level, small-step, operational semantics for the STG machine.
CodeRabbit: AI Code Reviews for Developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of haskellish or a related project?
README
About Haskellish
Haskellish is a library for parsing small Haskell-like languages. It is used in the Estuary project to parse the language CineCer0, in the TidalCycles project as part of the tidal-parse library, and in the Punctual project (a web-based audiovisual live coding language). It is meant to be used together with the haskell-src-exts library - a value of type Exp SrcSpanInfo (eg. parsed by haskell-src-exts from Text input) can be fed to a parser of type Haskellish a. Haskellish parsers are Functor, Applicative, Alternative, Monad, MonadPlus, and MonadState instances and thus can be composed together a la combinatorial parsing.
Version History (changelog)
- 0.2.3 - added functionApplication
- 0.2.2 - added binaryApplication
- 0.2.1 - added ifThenElse
- 0.2.0 - stateful parsing (and MonadState and MonadError instances)
- 0.1.2 - added reverseApplication
- 0.1.1 - added MonadPlus instance
- 0.1.0 - initial Hackage release