Getting Started With Incr_dom - Part 3

Note: Incr dom is superceded by a new, much easier to use library called Bonsai In this installment of the tutorial we’ll get the basics of the Tetris game working. We’ll create a 10x24 space board and use the standard pieces. …

Getting Started With Incr_dom - Part 2

Note: Incr dom is superceded by a new, much easier to use library called Bonsai This installment will add the basic frame of the single page application. We’ll create a menu and be able to navigate between the various pages. In later …

Getting Started With Incr_dom - Part 1

Note: Incr dom is superceded by a new, much easier to use library called Bonsai Incr_dom is a library created by Jane Street for building web applications using OCaml. The interesting thing about Incr_dom is it’s built on another one …

Maze Program

Introduction This is part of an old program series I’ll be writing up. During college I was into Computer Graphics, Compilers, Operating Systems, anything that got to the “heart” of practical computing. Our lab machines …

OCaml is Cool

Note: This is a filler document Why is OCaml cool? It’s statically typed, compiles fast, immutable by default, expressive. Below is the basic OCaml hello world. let _ = print_endline "Hello World!" or