(************************************************************ getenv.ml Created : Mon Jan 12 09:08:50 2004 Last modified: Mon Jan 12 09:09:20 2004 Compile: ocamlopt.opt getenv.ml -o getenv # FTP Directory: sources/ocaml # ************************************************************) (** @author Takashi Masuyama *) let _ = print_endline (Sys.getenv "HOME") ;;