summaryrefslogtreecommitdiff
path: root/test/ocaml/for_bounds/for_bounds.sail
blob: a7388a85bec46cb0c80ea5f34d50073c871d6a61 (plain)
1
2
3
4
5
6
7
val main : unit -> unit
function main () = {
  foreach(i from 0 to 3) {
    print_int("i=", i);
  }
}