Facebook
From Speedy Porcupine, 3 Years ago, written in OCaml (Objective Caml).
Embed
Download Paste or View Raw
Hits: 123
  1. let matrix m =
  2.   match m with
  3.   | (h1 :: h2 :: t) -> List.rev t
  4.   let aux t =
  5.     match t with
  6.     | h :: t -> List.rev t
  7.     in aux m

Replies to Untitled rss

Title Name Language When
Re: Untitled Toxic Camel ocaml 3 Years ago.