var fDesc=new Array(); fDesc[0] = "SPL (Simple Programming Language) is the result of open source project which aims at helping novices or beginners to start programming with easy and fun by simplifying complicated coding pattern into the simple script.
A primary design goal of SPL is to couple easiness of script with simplicity and fun. This makes SPL particularly suited for creating applications as compositions of commands and expressions regardless of whether these scripts are running PC, mobile phone, or embedded board. The result is a flexible yet simple for writing a broad set of applications.

SPLX Launcher tool supports auto launching of SPL script editor when you click SPL package file (*.splx) from the web or explorer."; 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 = ''; } }