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
;================================================================ | |
;mac風キーバインド(Cmd+Q) など | |
; https://gist.github.com/daimatz/1385713 | |
;================================================================ | |
#InstallKeybdHook | |
#UseHook | |
;================================================================ | |
;関数 |
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
-- Parsec 3 tutorial code -- | |
-- module Main where -- this isn't necessary | |
import Text.Parsec | |
import Text.Parsec.String (Parser) -- type Parser = Parsec String () | |
import Text.Parsec.Expr | |
import qualified Text.Parsec.Token as P | |
import Text.Parsec.Language (haskellStyle) | |
import Data.Char |