diff options
Diffstat (limited to 'ddl/test/idHs.hs')
-rw-r--r-- | ddl/test/idHs.hs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/ddl/test/idHs.hs b/ddl/test/idHs.hs new file mode 100644 index 0000000..7cd9917 --- /dev/null +++ b/ddl/test/idHs.hs | |||
@@ -0,0 +1,8 @@ | |||
1 | {-# LANGUAGE ScopedTypeVariables #-} | ||
2 | import qualified Data.ByteString.Lazy as B | ||
3 | import Data.Aeson | ||
4 | import IR | ||
5 | |||
6 | main = do | ||
7 | Just (p :: Pipeline) <- decode <$> B.getContents | ||
8 | B.putStr $ encode p | ||