Initial commit of Splash, a programming language aimed at kids. This was all done over the course of a 2 hour bus ride, and is currently only half working. Feel free to browse, keep checking back for a fully working build (scripts currently compile but do nothing in the browser)

This commit is contained in:
Ryan McGrath 2010-07-06 11:11:58 -04:00
commit 4e973d0b0f
11 changed files with 607 additions and 0 deletions

View file

@ -0,0 +1,11 @@
/* definitions.js
*
* A mapping array of splash ~> JS commands. Used by parser.js to "compile" code.
*
* @Author: Ryan McGrath (ryan@venodesigns.net)
* @Requires: Nothing
*/
exports.map = {
color: "backgroundColor",
}