opened 01:32PM - 28 Mar 23 UTC
closed 03:32PM - 28 Mar 23 UTC
sys : win 11
used the recommended DKML installer
Hello,
I try to do this …example from https://ocaml.org/docs/first-hour
```
open Graphics;;
open_graph " 640x480";;
for i = 12 downto 1 do
let radius = i * 20 in
set_color (if i mod 2 = 0 then red else yellow);
fill_circle 320 240 radius
done;;
read_line ();;
```
There is not graphics here :
```
ocamlc -where
C:/Users/****/AppData/Local/Programs/DISKUV~1/lib/ocaml
```
It is here:
`C:\Users\****\AppData\Local\opam\playground\lib\graphics`

```
with-dkml ocamlfind ocamlopt -o a.exe -I C:\Users\****\AppData\Local\opam\playground\lib\graphics\graphics.cmxa test_graphique.ml
File "test_graphique.ml", line 1, characters 5-13:
1 | open Graphics;;
^^^^^^^^
Error: Unbound module Graphics
```
`opam list -a`
gives

Can You help me to compile this ?
Thanks