Don't have a review but you should check the video on www.hex-rays.com, it shows some features. I can also answer any questions or show how it works on a specific program.
hexrays features decompilation of an exe in a c or visualc++ syntax , hexrays put a plugin hexrays.plw for ida pro 5.1 for users that upgraded ida 5.0 also i didn't find
I don't think you can do a review in "a few mins". I have a few observations though.
Proper typing is everything. It can reduce a five-line cast into a single line call. Most of Win32 API functions do have proper prototypes so their arguments are typed automatically, but you need to create structures for any user type to get proper code. Here's where IDA's interactivity really shines.
The core C decompiler is very good. It handles most of MSVC's idioms and picks up a lot of inlined standard functions like strlen/strcpy. However, highly optimized code can produce a lot of gotos.
Some of the current deficiencies:
1) no support for c++, exceptions or floating-point
2) if you rename a structure, all of the functions that were using it will fail to decompile
3) there can be a lot of redundant variables produced when the data is copied around
4) you can't "split" a variable when a stack slot is reused for something with a different type
I hope some of these can be addressed with the SDK.
P.S. Ilfak mentioned "maybe next year" for ARM support :)
I was also at the beta list and bought the final release because of the results you can get from hex-rays. I had a look at other decompilers in the past and from my point of view hex-rays is the 1st one that produces usable results. It's true that results can be improved if you do the basic stuff in IDA. But even without that hex-rays saves a lot of time and money, if assembler isn't your native language. Hex-rays is NOT a "just press F5 and recompile the code"-tool, but in my tests I had some examples where that would be possible ;-). It's a tool to make RE much more efficient and it's a tool for professionals that (almost) know what they are doing.