diff options
author | eric thul <thul.eric@gmail.com> | 2016-02-24 22:55:17 -0500 |
---|---|---|
committer | eric thul <thul.eric@gmail.com> | 2016-02-24 22:55:17 -0500 |
commit | f97818b550b17455448ff7fe09689b326c30912b (patch) | |
tree | 2ab19c4a3f01925f1ee5c29f99c4f6cd6e5c1166 /example/src/Foo | |
parent | 460393439a8dd7d94fe02a2013e96c9146282bf1 (diff) | |
download | purs-loader-f97818b550b17455448ff7fe09689b326c30912b.tar.gz purs-loader-f97818b550b17455448ff7fe09689b326c30912b.tar.zst purs-loader-f97818b550b17455448ff7fe09689b326c30912b.zip |
Updating example
Diffstat (limited to 'example/src/Foo')
-rw-r--r-- | example/src/Foo/Bar.purs | 12 | ||||
-rw-r--r-- | example/src/Foo/Boz.purs | 5 |
2 files changed, 15 insertions, 2 deletions
diff --git a/example/src/Foo/Bar.purs b/example/src/Foo/Bar.purs index 6932902..1b0919c 100644 --- a/example/src/Foo/Bar.purs +++ b/example/src/Foo/Bar.purs | |||
@@ -1,5 +1,13 @@ | |||
1 | module Foo.Bar (bar) where | 1 | module Foo.Bar (bar, jar, jee) where |
2 | 2 | ||
3 | bar = "c" | 3 | import Foo.Boz |
4 | |||
5 | bar = "u" | ||
4 | 6 | ||
5 | bar' = "d" | 7 | bar' = "d" |
8 | |||
9 | jam = "c" | ||
10 | |||
11 | jar = "xyzw" | ||
12 | |||
13 | jee = "abcde" | ||
diff --git a/example/src/Foo/Boz.purs b/example/src/Foo/Boz.purs new file mode 100644 index 0000000..c802e47 --- /dev/null +++ b/example/src/Foo/Boz.purs | |||
@@ -0,0 +1,5 @@ | |||
1 | module Foo.Boz where | ||
2 | |||
3 | a = "a" | ||
4 | |||
5 | b = "b" | ||