I'm using VS2008 with F# integration (April 2010 Community Technology Preview)
When I declare a normal variable, e.g.
let x = 4
then x will show up in the Local debug window when I set a breakpoint
However, if I use a mutable variable
let mutable x = 4
then x will not appear in the same window
Any advice?