MBED port of https://github.com/ys1382/filagree . The only change is adding #define MBED

Dependents:   filagree_test

Revision:
0:1a89e28dea91
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/sys.h	Wed May 30 21:13:01 2012 +0000
@@ -0,0 +1,23 @@
+#ifndef SYS_H
+#define SYS_H
+
+#include "vm.h"
+
+void print();
+void save();
+void load();
+void rm();
+
+struct string_func
+{
+    const char* name;
+    bridge* func;
+};
+
+struct variable *func_map(struct Context *context);
+
+struct variable *builtin_method(struct Context *context,
+								struct variable *indexable,
+                                const struct variable *index);
+
+#endif // SYS_H
\ No newline at end of file