Changeset 186
- Timestamp:
- Jan 24, 2008, 6:10:21 PM (18 years ago)
- Author:
- neil.c.c.brown
- Message:
-
Added a title page to the document (since it now seems long enough) and fixed a code line that was too long
- File:
-
- 1 edited
- docs/trunk/hacking-guide/tock-intro.tex (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
docs/trunk/hacking-guide/tock-intro.tex
r185 r186 6 6 \usepackage[a4paper=true,colorlinks=true,urlcolor=blue]{hyperref} 7 7 8 (追記) \title{Introduction to Working on Tock} (追記ここまで) 9 (追記) \author{Neil Brown} (追記ここまで) 10 (追記) (追記ここまで) 8 11 \begin{document} 9 12 10 13 \haskellsettings 14 (追記) (追記ここまで) 15 (追記) \maketitle (追記ここまで) 16 (追記) \tableofcontents (追記ここまで) 17 (追記) (追記ここまで) 18 (追記) \newpage (追記ここまで) 11 19 12 20 \section{Getting the Code} … … 322 330 PassM b -- ^ The actual pass. 323 331 -> CompState -- ^ The state to use to run the pass. 324 -> IO (CompState, Either ErrorReport b) -- ^ The resultant state, and either an error or the successful outcome of the pass. 332 -> IO (CompState, Either ErrorReport b) 333 -- ^ The resultant state, and either an error or the successful outcome of the pass. 325 334 runPass actualPass startState = (liftM (\(x,y) -> (y,x))) 326 335 (runStateT (runErrorT actualPass) startState)
Note:
See TracChangeset
for help on using the changeset viewer.