Sophie

Sophie

distrib > Mageia > 6 > armv5tl > by-pkgid > 4cff157897062e602ceb7760aea7d046 > files > 10

camlmix-1.3.1-6.mga6.armv5tl.rpm

let _ =
  match Sys.argv with
      [| _; first; last; age_s |] -> 
	let buf = Buffer.create 1000 in
	let print = Buffer.add_string buf in
	Dynamic2.render ~print (first, last, int_of_string age_s);
	let contents = Buffer.contents buf in
	print_string (String.uppercase contents)

    | _ -> prerr_string "Usage: dynamic2 firstname lastname age\n"; exit 1