We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36409e7 commit 2de035cCopy full SHA for 2de035c
README.md
@@ -7,7 +7,7 @@ System effects for Coq. See [coq:io](https://github.com/clarus/io).
7
8
Import C.Notations.
9
10
- Definition hello_world : C.t System.effects unit :=
+ Definition hello_world (argv : list LString.t) : C.t System.effects unit :=
11
System.log (LString.s "Hello world!").
12
13
## Install
@@ -22,7 +22,7 @@ See the complete documentation online on [doc/io-system](http://clarus.github.io
22
## Extraction
23
To run a program you can extract it to [OCaml](https://ocaml.org/). Do:
24
25
- Definition main := Extraction.Lwt.run (Extraction.eval hello_world).
+ Definition main := Extraction.run hello_world.
26
Extraction "main" main.
27
28
You can now compile and execute `main.ml`:
0 commit comments