Skip to content

Commit

Permalink
Better fix for parsing doc
Browse files Browse the repository at this point in the history
  • Loading branch information
Gbury committed Nov 20, 2023
1 parent c879919 commit d1e182b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion doc/parsing.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,8 @@ module P =
(Dolmen.Std.Loc)(Dolmen.Std.Id)(Dolmen.Std.Term)(Dolmen.Std.Statement)
(Dolmen.Std.Extensions.Smtlib2)
let _ = P.parse_all (`File "example.smt2")
let _, lazy_l = P.parse_all (`File "example.smt2")
let statements = Lazy.force lazy_l
```

For more examples, see the [tutorial](https://github.com/Gbury/dolmen/tree/master/doc/tuto.md).
Expand Down

0 comments on commit d1e182b

Please sign in to comment.