====== JAsCo Kernel and Command Line Tools ====== Not recommended for starters! Use [[eclipse:JAsCoDT|JAsCoDT]] for easy JAsCo development. ===== System Requirements: ===== * JDK 1.5 is required * Windows 2000/XP or Linux; any other os is not tested at this moment and parts of the program might fail. ===== Installation intructions: ===== The [[documentation:main|documentation section]] contains installation and testing instructions as well as an overview of the JAsCo language and tools. ====== Latest JAsCo Release Download ====== $query = "SELECT * FROM jasco WHERE public=1 ORDER BY datum DESC"; mysql_select_db("docman"); $result=mysql_query($query) or print("Query failed:".$query); echo mysql_error(); $line = mysql_fetch_array($result); $date=$line["datum"]; $filename=$line["file"]; $changes=$line["changes"]; $comments=$line["comments"]; $public=$line["public"]; $versionid=$line["versionid"]; $filename="./docman/files/$filename"; $jascov="JAsCo $versionid"; echo "

Latest public build: $jascov (revised $date)"; Latest public build information: [[kernel:0.8.5|Release Notes]] Problems or questions? Don't hesitate to [[contact|contact us]]. ==== Older Release Builds: ==== function fetchBuild($id) { $query = "SELECT * FROM jasco WHERE id=$id"; mysql_select_db("docman"); $result=mysql_query($query) or print("Query failed:".$query); $line = mysql_fetch_array($result); $date=$line["datum"]; $filename=$line["file"]; $changes=$line["changes"]; $comments=$line["comments"]; $public=$line["public"]; $versionid=$line["versionid"]; $filename="./docman/files/$filename"; $jascov="JAsCo $versionid"; echo "$jascov (revised $date)"; } * fetchBuild(162); More info: [[kernel:0.8.5M4|Release Notes 0.8.5M4]] * fetchBuild(161); More info: [[kernel:0.8.5M3|Release Notes 0.8.5M3]] * fetchBuild(160); More info: [[kernel:0.8.5M2|Release Notes 0.8.5M2]] * fetchBuild(158); More info: [[kernel:0.8.5M1|Release Notes 0.8.5M1]] ====== Latest Development Build Download ====== Our subversion repository supports anonymous access for checking out the latest build. For more information how to do this, [[kernel:subversion|go here]].