ocaml-programming

Simple OCaml programs
git clone git://git.laack.co/ocaml-programming.git
Log | Files | Refs | README

pattern-match.ml (90B)


      1 let res = match not true with
      2 | true -> "true"
      3 | false -> "false" in
      4 
      5 print_endline res;;