Module Lang.LoopSource

include module type of struct include Empty end
Sourcetype 'a m = 'a

'a m is the type of programs computing a value of type 'a

Sourcetype index = int
Sourceval for_ : start:int -> stop:int -> (int -> 'a) -> unit
Sourceval while_ : cond:(unit -> bool) -> (unit -> 'a) -> unit