summaryrefslogtreecommitdiffstats
path: root/ocamlbuild/examples/example1/hello.ml
diff options
context:
space:
mode:
Diffstat (limited to 'ocamlbuild/examples/example1/hello.ml')
-rw-r--r--ocamlbuild/examples/example1/hello.ml12
1 files changed, 12 insertions, 0 deletions
diff --git a/ocamlbuild/examples/example1/hello.ml b/ocamlbuild/examples/example1/hello.ml
index c85cb66b8..f21b6ae13 100644
--- a/ocamlbuild/examples/example1/hello.ml
+++ b/ocamlbuild/examples/example1/hello.ml
@@ -1,3 +1,15 @@
+(***********************************************************************)
+(* *)
+(* ocamlbuild *)
+(* *)
+(* Nicolas Pouillard, Berke Durak, projet Gallium, INRIA Rocquencourt *)
+(* *)
+(* Copyright 2007 Institut National de Recherche en Informatique et *)
+(* en Automatique. All rights reserved. This file is distributed *)
+(* under the terms of the Q Public License version 1.0. *)
+(* *)
+(***********************************************************************)
+
let _ =
Printf.printf "Hello, %s ! My name is %s\n"
(if Array.length Sys.argv > 1 then Sys.argv.(1) else "stranger")