var fDesc=new Array(); fDesc[0] = "Horns is a minimal Lisp implementation. Its primary goal is to manipulate lambda expressions in an interpretive environment.
Horns is extremely regular and therefore (i) easy to parse, (ii) easy to debug, and (iii) easy to learn. The grammar is an LALR based on S-expressions as specified in horns.y. This file is both the implementation and specification for the language. Unlike C , Horns is portable, powerful, plain, plastic, precise, petite, polite and people-friendly, and pointer-free."; 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 = ''; } }