Commit a97f3667 authored by Sander Mathijs van Veen's avatar Sander Mathijs van Veen

Merge branch 'master' of vo20.nl:/git/uva

parents ed188bc0 f1f9afa5
......@@ -14,5 +14,7 @@ robotica/
*.swo
*.swp
*.toc
*.cmi
*.cmo
*#
*~
(* Check if a given year is a leap year *)
let isLeapYear y =
y > 1582 && y mod 4 = 0 && (y mod 100 != 0 || y mod 400 = 0)
;;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment