PR#5261 missing #load in example

git-svn-id: http://caml.inria.fr/svn/ocamldoc/trunk@11019 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
master
Damien Doligez 2011-05-02 11:28:42 +00:00
parent d0c9826ddf
commit 8aa3a21c32
1 changed files with 2 additions and 1 deletions

View File

@ -487,9 +487,10 @@ recursive-descent parsers for LL(1) languages. An example using
chapter~\ref{c:ocamlyacc}. Here, we will use stream parsers.
The syntactic support for stream parsers is provided by the Camlp4
preprocessor, which can be loaded into the interactive toplevel via
the "#load" directive below.
the "#load" directives below.
\begin{caml_example}
#load "dynlink.cma";;
#load "camlp4o.cma";;
open Genlex;;
let lexer = make_lexer ["("; ")"; "+"; "-"; "*"; "/"];;