var fDesc=new Array(); fDesc[0] = "Do you like boo? Do you like Visual Studio 2008? Well, then you should like BooLangStudio!

This release is the initial alpha version of the upcoming BooLangStudio.

Included changes are:

- New, more hassle-free installer.
- booc.exe is forced into 32bit-only mode via corflags.exe /32bit . This allows people in x64 Windows environments (including Vista and Server 2008) to develop and compile boo code.
- Boo dependencies have been upgraded to svn revision 3035, which includes improved support for generics amongst other things.
- BooLangStudio now runs in the main registry hive."; function tShowHide(id, show) { var s = document.getElementById("desc"); if ((s.innerHTML.length<=212 || show==1) && show!=2) { s.innerHTML = fDesc[id]; if (document.getElementById('m1')) document.getElementById('m1').style.display='none'; if (document.getElementById('m2')) document.getElementById('m2').style.display='none'; if (document.getElementById('more_txt')) document.getElementById('more_txt').style.display='inline'; } else { s.innerHTML = ''; } }