More in test003; requires latex epic fix

This commit is contained in:
Edwin Brady 2011-12-17 18:55:58 +00:00
parent 0bc69fbfd3
commit 001e2d50d8
2 changed files with 7 additions and 1 deletions

View File

@ -3,3 +3,5 @@ a
d
zabcdefg
gfedcba
[g, f, e, d, c, b, a]
abcdefg

View File

@ -11,5 +11,9 @@ Literate main program
> main = do { putStrLn (show (strHead st));
> putStrLn (show (strIndex st 3));
> putStrLn (strCons 'z' st);
> putStrLn (rev st); };
> putStrLn (rev st);
> let x = unpack st;
> putStrLn (show (rev x));
> putStrLn (pack x);
> };