UniTO/tesi/traces/example0.ml
2024-10-29 09:11:05 +01:00

7 lines
135 B
OCaml
Executable file

external observe : 'a -> 'b = "observe"
let mm = function
| 2 -> observe 2
| 3 -> observe 3
| 4 -> observe 4
| _ -> observe 5