Skip to content

Commit 37636b8

Browse files
committed
add missing files
1 parent 0faf2f8 commit 37636b8

File tree

2 files changed

+33
-0
lines changed

2 files changed

+33
-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,16 @@
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 {a :: Int, b :: String}

0 commit comments

Comments
 (0)