summaryrefslogtreecommitdiff
path: root/thue.hs
blob: 8c56a2eb5e6b9cbefd5d368cb5c244564150133f (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
54
55
56
57
58
59

import Text.Combinators.Parsec



data ThueProgram = ThueProgram { substitutionRules :: [Rule]
                               , initialState :: State }
    deriving (Show)


data Rule = Rule { original :: State
                 , replacement :: State }
    deriving (Show)


type State = String




parseThue :: String -> Either ParseError ThueProgram
parseThue = parse thue "error"




thue = do
	rs <- many ruleLine
	separatorLine
	i <- stateLine
	return (ThueProgram rs i)


ruleLine = do
	r <- rule
	eol
	return r


rule = do
	o <- state
	separator
	r <- state
	return (Rule o r)


separatorLine = separator >> eol
separator = string "::="


stateLine = do
	s <- state
	eol
	return s


state =