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:
commit
4e973d0b0f
11 changed files with 607 additions and 0 deletions
11
lib/libraries/definitions.js
Normal file
11
lib/libraries/definitions.js
Normal 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",
|
||||
}
|
||||
Reference in a new issue