File: int_ext.ocaml_lt_4_13.ml

package info (click to toggle)
ocaml-multicore-bench 0.1.7-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 320 kB
  • sloc: ml: 1,476; sh: 60; makefile: 6
file content (2 lines) | stat: -rw-r--r-- 106 bytes parent folder | download
1
2
let min (x : int) (y : int) = if x < y then x else y
let max (x : int) (y : int) = if x < y then y else x