diff options
Diffstat (limited to 'example/src')
-rw-r--r-- | example/src/Foo.purs | 6 | ||||
-rw-r--r-- | example/src/Test.purs | 6 | ||||
-rw-r--r-- | example/src/entry.js | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/example/src/Foo.purs b/example/src/Foo.purs index b234e0d..97b7cec 100644 --- a/example/src/Foo.purs +++ b/example/src/Foo.purs | |||
@@ -1,9 +1,9 @@ | |||
1 | module Foo (foo) where | 1 | module Foo where |
2 | 2 | ||
3 | import Prelude | 3 | import Prelude |
4 | 4 | ||
5 | import qualified Foo.Bar as B | 5 | import qualified Foo.Bar as B |
6 | 6 | ||
7 | foo = "b" | 7 | foo = "A" |
8 | 8 | ||
9 | foo' = "c" | 9 | bar = "B" |
diff --git a/example/src/Test.purs b/example/src/Test.purs index 133a192..3a92681 100644 --- a/example/src/Test.purs +++ b/example/src/Test.purs | |||
@@ -1,7 +1,7 @@ | |||
1 | module Test (test, testing) where | 1 | module Test (testing) where |
2 | 2 | ||
3 | import Prelude | 3 | bar = "c" |
4 | 4 | ||
5 | test = "a" | 5 | goo = "a" |
6 | 6 | ||
7 | foreign import testing :: String | 7 | foreign import testing :: String |
diff --git a/example/src/entry.js b/example/src/entry.js index cde8507..be0a475 100644 --- a/example/src/entry.js +++ b/example/src/entry.js | |||
@@ -1,4 +1,4 @@ | |||
1 | var Prelude = require('Prelude'); | 1 | var Prelude = require('purescript-prelude/src/Prelude.purs'); |
2 | 2 | ||
3 | var test = require('./Test.purs'); | 3 | var test = require('./Test.purs'); |
4 | 4 | ||