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
    
  
  
    
  | -- released under CC0 by favonia | |
| import System.Environment | |
| fix f = let lfp = f lfp in lfp | |
| quotes :: [String -> String] | |
| quotes = map q $ cycle [("「", "」"), ("『", "』")] | |
| where q (l,r) str = l ++ str ++ r | 
NewerOlder