6
私はこれらのシンボル[|....|]
の構文は何ですか?Indexed Monadハスケルの角括弧は何ですか?
{-# LANGUAGE QuasiQuotes #-}
import Control.Monad.Indexed.State
import Control.Monad.Indexed
import Language.Haskell.IndexedDo
hoge :: IxState Int [Int]()
hoge = [ido|do
imodify (*10)
imodify show
imodify reverse
imodify (++"123")
imodify $ map fromEnum
|]
に以下のコードを読んで
シンタックスシュガーとは何ですか?
これは[Template Haskell](http://www.haskell.org/haskellwiki/Template_Haskell)です。 –