File: FunctionMangler.hs

package info (click to toggle)
haskell-llvm-base 3.0.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 456 kB
  • sloc: cpp: 497; haskell: 338; ansic: 282; makefile: 10
file content (8 lines) | stat: -rw-r--r-- 192 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
module FunctionMangler (main) where

import Data.List (intercalate)

import FunctionMangulation (rewrite)

main :: IO ()
main = interact (intercalate "\n\n" . concat . rewrite) >> putStr "\n"