var fDesc=new Array();
fDesc[0] = "It's meant to make writing in OCaml relatively painless without having to learn the nuances of a powerful editor like Emacs or VI.
Main Features:
- Syntax Highlighting
- Automatic Indentation
- Tabbed design to edit several files in one window
- Graphical parenthesis matching
- Split-pane interface for working with files and the OCaml console
- Graphical debugger
- Tool-tip style type display for all expressions
- Clickable bug tips to demystify some of OCaml's notoriously difficult error messages";
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 = '';
}
}