1
0
forked from GitHub/gf-core

kotus experiments; bindings in gfcc

This commit is contained in:
aarne
2008-02-13 17:47:54 +00:00
parent 0fc72dda44
commit c399f4f80a
7 changed files with 55362 additions and 18 deletions

View File

@@ -37,9 +37,9 @@ initiate tgt cat i = mapM_ putStrLn [
"lin testV = showV ;"
]
nums = map prt [1 ..] where
nums = map prt [10001 ..] where
---- prt i = (if i < 10 then "0" else "") ++ show i ++ ". "
prt i = let n = show i in replicate (4-length n) '0' ++ n ++ ". "
prt i = show i ++ ". "
-- W is the flag for mixed-class word lists
mkLex "W" 0 line = case words line of