(***********************************************************************) (* *) (* OCaml *) (* *) (* Damien Doligez, projet Moscova, INRIA Rocquencourt *) (* *) (* Copyright 2000 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. *) (* *) (***********************************************************************) (* C *) let foo = ( *);; (* F *) let f x y = x;; f 1; f 1;; (* M *) (* duh *) (* P *) let 1 = 1;; (* S *) 1; 1;; (* U *) match 1 with | 1 -> () | 1 -> () | _ -> () ;; (* V *) (* re-duh *) (* X *) (* re-re *)