Later today, the scripting_squirrel branch will be merged to trunk. Be prepared

I also started writing documentation about scripting in Code::Blocks. Find it
here and tell me if you find something's wrong.
EDIT:For those not following the development of Code::Blocks, we have replaced AngelScript by Squirrel in that branch and have been testing for a week or two.
This means that if you have written scripts for Code::Blocks,
you will have to convert them. Luckily, squirrel follows a C++ syntax too so only a few semantics must be changed in your scripts.
Here are the most important changes:
- All literal strings must be surrounded by _T() (e.g. _T("hello"))
- Squirrel is typeless. If you have a declaration like wxString s="hello";, change it to local s=_T("hello");. Same goes for all types.
- Because of the above, functions don't have return types. So replace all function return specifications with the word function.
This should cover most conversion cases.