Created
January 11, 2016 11:15
-
-
Save tolysz/5607133409b37d89c9c5 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{-# LANGUAGE QuasiQuotes #-} | |
module Main where | |
import Text.Regex.PCRE.Heavy (gsub, re, Regex) | |
ignore_comments :: [Regex] -> [String] | |
ignore_comments rs = | |
map (\r -> gsub r ("":: String) ("/*test commentary*/ abc test")) rs | |
main :: IO () | |
main = do | |
mapM_ putStrLn $ ignore_comments [ [re|/|], [re|\/|], [re|\\/|], [re|\\\/|], [re|\\\\/|], [re|\\\\\/|], [re|\\\\\\/|], [re|\\\\\\\/|] ] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment