diff options
author | eric thul <thul.eric@gmail.com> | 2015-07-18 17:07:38 -0400 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2015-07-18 17:07:38 -0400 |
commit | 3610dff1b8308a810d827f0595832b326deff37b (patch) | |
tree | a4858f5e16e3df01aee249ad53b5b76f90fb97de /example/src/Test.purs | |
parent | 418c9429609c6d80ddaf7df41e0ee64192e2ec7b (diff) | |
download | purs-loader-3610dff1b8308a810d827f0595832b326deff37b.tar.gz purs-loader-3610dff1b8308a810d827f0595832b326deff37b.tar.zst purs-loader-3610dff1b8308a810d827f0595832b326deff37b.zip |
Add FFI JavaScript as a webpack dependency
Resolves #18
Diffstat (limited to 'example/src/Test.purs')
-rw-r--r-- | example/src/Test.purs | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/example/src/Test.purs b/example/src/Test.purs index d9f1b96..133a192 100644 --- a/example/src/Test.purs +++ b/example/src/Test.purs | |||
@@ -1,5 +1,7 @@ | |||
1 | module Test (test) where | 1 | module Test (test, testing) where |
2 | 2 | ||
3 | import Prelude | 3 | import Prelude |
4 | 4 | ||
5 | test = "a" | 5 | test = "a" |
6 | |||
7 | foreign import testing :: String | ||