about summary refs log tree commit diff
path: root/third_party/bazel/rules_haskell/tests/indirect-link/test/Main.hs
blob: 0b3d188d736aedd9d27ad07d80f51bc3b1076bbd (plain) (blame)
1
2
3
4
5
6
7
8
9
module Main (main) where

import qualified MyModule

main :: IO ()
main = do
  print =<< MyModule.getThing
  MyModule.setThing 123
  print =<< MyModule.getThing