1
1
mirror of https://github.com/github/semantic.git synced 2024-12-21 05:41:54 +03:00
semantic/src/Algorithm.hs

7 lines
128 B
Haskell
Raw Normal View History

2015-11-18 03:20:52 +03:00
module Algorithm where
2015-11-18 03:24:01 +03:00
import Control.Monad.Free
import Operation
2015-11-19 00:23:47 +03:00
type Algorithm a annotation = Free (Operation a annotation)