fork download
  1. exception Value of (int * string option)
  2.  
  3. let () =
  4. try
  5. let m = (1, Some "xyu") in raise @@ Value m with
  6. Value (_, Some x) -> print_endline x
  7. ;;
Success #stdin #stdout 0s 4224KB
stdin
Standard input is empty
stdout
xyu