Pinch the Camel – OCaml
December 21st, 2007OCaml is a strange beast of a language… at least to my imperative shaped brain. Some very very basic code:
(* define a function *)
# let sqr x = x * x;;
val sqr : int -> int =
Ocaml is an impure functional programming language. Impure because it also support imperative concepts, *O*Caml because it also supports object oriented programming. Now.. how do you make a shmup with that?
