Introduce a proper build system and clear away old cruft.
[sod] / src / foo.sod
diff --git a/src/foo.sod b/src/foo.sod
deleted file mode 100644 (file)
index 049179b..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-/* foo */
-
-code c : includes {
-#include "foo.h"
-}
-
-code h : includes {
-#include "sod.h"
-}
-
-//[link = SodObject]
-class Test : SodObject {
-  int x = 0;
-
-  int cur() { return me->test.x; }
-  void inc() { me->test.x++; }
-  void dec() { me->test.x--; }
-}
-
-[nick = snd]
-class Second : Test {
-  void test.dec() { Test *t = SECOND__CONV_TEST(me); t->test.x -= 3; }
-}