@hackage hsc3-utils0.15

Haskell SuperCollider Utilities

hsc3-utils - haskell supercollider3 utilities

hsc3 related utility programs.

hash-paren

hash-paren is a simple minded haskell pre-processor that extends the haskell do syntax by rewriting # parenthesised elements of a right hand side expression as monadic bindings. Ie.

do ...
   c <- f #(a) #(b)
   ...

is rewritten as:

do ...
   _hp_0 <- a
   _hp_1 <- b
   c <- f _hp_0 _hp_1
   ...

© rohan drape, 2013-2014, gpl.

  • Deprecated

  • Dependencies (0)

  • Dependents (0)