diff options
Diffstat (limited to 'src/PursLoader/Debug.purs')
-rw-r--r-- | src/PursLoader/Debug.purs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/PursLoader/Debug.purs b/src/PursLoader/Debug.purs new file mode 100644 index 0000000..7a02f69 --- /dev/null +++ b/src/PursLoader/Debug.purs | |||
@@ -0,0 +1,9 @@ | |||
1 | module PursLoader.Debug (debug) where | ||
2 | |||
3 | import Prelude (Unit()) | ||
4 | |||
5 | import Control.Monad.Eff (Eff()) | ||
6 | |||
7 | import PursLoader.LoaderRef (Loader()) | ||
8 | |||
9 | foreign import debug :: forall eff. String -> Eff (loader :: Loader | eff) Unit | ||