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 starters, need to consider spaces in names or names that are reserved words.
The following are not correct:
> let ``hello world`` = 0;;
val ( hello world ) : int = 0
> decompile <@ ``hello world`` @>;;
val it : string = "hello world"
> let ``goodbye world`` x = x;;
val ( goodbye world ) : 'a -> 'a
> decompile <@ ``goodbye world`` 0 @>;;
val it : string = "goodbye world 0"
Original issue reported on code.google.com by stephen....@gmail.com on 23 Apr 2012 at 2:39
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
stephen....@gmail.com
on 23 Apr 2012 at 2:39The text was updated successfully, but these errors were encountered: