var fDesc=new Array(); fDesc[0] = "NaaLaa is a very simple programming language. If you're already a professional programmer you shouldn't bother to download it, but if you're new to the area it might be worth a shot.

NaaLaa is an interpreted language. But the actual interpreter (around 200 kB in size) is invisible as it's baked into every program that you compile.

As NaaLaa uses software routines for all graphics rendering your programs will not require DirectX or OpenGL to run."; 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 = ''; } }