Popularity
3.1
Declining
Activity
0.0
Stable
2
4
0

Monthly Downloads: 17
Programming language: Haskell
License: BSD 3-clause "New" or "Revised" License
Tags: Debugging    

NoHoed alternatives and similar packages

Based on the "Debugging" category.
Alternatively, view NoHoed alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of NoHoed or a related project?

Add another 'Debugging' Package

README

NoHoed

NoHoed is a convenience package to preserve the ability to debug your code using Hoed. The package is designed to be used in conjunction with Cabal flags.

Example

The following excerpt of a Cabal descriptor illustrates the intended usage:

Flag Debug
  Description:         Enabled Hoed algorithmic debugging
  Default:             False
  Manual:              True

Library
    Exposed-Modules:     
                         Control.Arrow.Notation,
                         Control.Arrow.QuasiQuoter
    Build-Depends: base < 5,
                   array,
                   containers,
                   haskell-src-exts,
                   haskell-src-meta
    if flag(Debug)
       Build-Depends:       Hoed
       cpp-options:         -DDEBUG
    else
       Build-Depends:       NoHoed