summaryrefslogtreecommitdiff
path: root/Fractran/Parser.hs
blob: 63564d13c003cf17d475811583f4ae707487c039 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module Parser (
	FractranProgram(..),

	parseFractran
	) where


import Text.Combinators.Parsec



data FractranProgram = FractranProgram { fractions :: [(Int,Int)]
                                       , initialValue :: Int }
    deriving (Show)



parseFractran :: String -> Either ParseError FractranProgram
parseFractran = parse fractran "error"




fractran = do
	f <- many intPair
	v <- initVal
	eof
	return (FractranProgram f v)


intPair = do
	whiteSpace
	n <- wholeNumber
	slash
	d <- wholeNumber
	return (n,d)


slash = char '/'


initVal = do
	whiteSpace
	v <- wholeNumber
	whiteSpace
	return v


wholeNumber =


whiteSpace = many (oneOf "\t\n\r ")