Skip to content

Latest commit

 

History

History
42 lines (33 loc) · 737 Bytes

README.md

File metadata and controls

42 lines (33 loc) · 737 Bytes

FizzBuzzML

An implementation of FizzBuzz written in OCaml.

Build Status

https://blog.codinghorror.com/why-cant-programmers-program/

Requirements

sudo apt-get install opam
opam init --yes
opam config env
opam install depext conf-m4.1
opam install ounit --yes
opam update
opam upgrade

sudo apt-get install ocaml-batteries-included
sudo apt-get install libounit-ocaml-dev

Make targets

Build and run tests

make

Run executable

make run

Run tests

make tests

Clear up

make clean