Skip to content

Commit ebf4230

Browse files
committed
add missing files
1 parent ff63d26 commit ebf4230

File tree

2 files changed

+36
-0
lines changed

2 files changed

+36
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
module Format where
2+
3+
import Data.List
4+
import Prelude
5+
import Data.Int
6+
7+
foo :: Int -> Int
8+
foo 3 = 2
9+
foo x = x
10+
11+
bar :: String -> IO String
12+
bar s = do
13+
x <- return "hello"
14+
return "asdf"
15+
16+
data Baz = Baz { a :: Int, b :: String }
17+
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
module Format where
2+
3+
import Data.Int
4+
import Data.List
5+
import Prelude
6+
7+
foo :: Int -> Int
8+
foo 3 = 2
9+
foo x = x
10+
11+
bar :: String -> IO String
12+
bar s = do
13+
x <- return "hello"
14+
return "asdf"
15+
16+
data Baz = Baz
17+
{ a :: Int,
18+
b :: String
19+
}

0 commit comments

Comments
 (0)