Re: Do I understand this right
| Newsgroups | gmane.comp.lang.ocaml.beginners |
|---|---|
| Message-ID | <[email protected]> |
Hi, you can use the toplevel interpreter and type in your expressions there. The interpreter answers every entered stuff that ends with two semicolon ( ;; ) by repeating the value and also printing the type. So, so if you want immediate feedback, ocaml toplevel interpreter can help you. Ciao, Oliver P.S.: you may use programs like "ledit" to enhance editing on the interpreter command line. Use it like this from your shell: $ ledit ocaml __END__ > Am 07.11.2014 um 15:38 schrieb Roelof Wobben [email protected] [ocaml_beginners] <[email protected]>: > > Hello, > > Im still struggeling with chapter 4 and I see this : > > (string * int) list > > Am I right that I must see it like this [ [hhshsh, 1] ] > > Roelof >