TinyJS

Dependencies:   mbed

Fork of TinyJS by Takehisa Oneta

Files at this revision

API Documentation at this revision

Comitter:
ohneta
Date:
Sat Jan 11 22:10:19 2014 +0000
Parent:
1:d793f113cfc0
Child:
3:f56c36ea8266
Commit message:
Improvement of the portability.

Changed in this revision

Script.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/Script.cpp	Sat Jan 11 20:23:40 2014 +0000
+++ b/Script.cpp	Sat Jan 11 22:10:19 2014 +0000
@@ -41,9 +41,6 @@
 #include <assert.h>
 #include <stdio.h>
 
-#include "mbed.h"
-
-
 //const char *code = "var a = 5; if (a==5) a=4; else a=3;";
 //const char *code = "{ var a = 4; var b = 1; while (a>0) { b = b * 2; a = a - 1; } var c = 5; }";
 //const char *code = "{ var b = 1; for (var i=0;i<4;i=i+1) b = b * 2; }";