You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For example,
> let (+) x y z = x - y - z;;
val ( + ) : int -> int -> int -> int
> decompile <@ (+) 3 3 3 @>;;
val it : string = "op_Addition 3 3 3"
is correct, but we'd like to print "(+) 3 3 3"
Original issue reported on code.google.com by stephen....@gmail.com on 23 Apr 2012 at 2:25