I keep getting this error and don't understand why.
This is my OCaml code:
#load "graphics";;
open Graphics;;
open_graph "";;
let etoile x y c =
moveto (x-c/2) (y-c/2) ;
lineto (x-c/4) y ;
lineto (x-c/2) (y+c/2) ;
lineto x (y+c/2) ;
lineto (x+c/2) (y+c/2) ;
lineto (x+c/4) y ;
lineto (x+c/4) (y-c/4) ;
lineto x (y-c/2) ;
lineto (x-c/2) (y-c/2) ;;
etoile 100 100 20;;
and this is the terminal:
even though graphics are installed as you can see in the terminal.