Skip to content
Snippets Groups Projects
run_log.ml 179 B
Newer Older
let run () =
  Self.result "Hello, world!";
Patrick Baudin's avatar
Patrick Baudin committed
  let product =
    Self.feedback ~level:2 "Computing the product of 11 and 5...";
    11 * 5
  in
  Self.result "11 * 5 = %d" product