update everything to naming conventions agreed upon in class last week
[fleet.git] / contrib / icache-demo.fleet
diff --git a/contrib/icache-demo.fleet b/contrib/icache-demo.fleet
deleted file mode 100644 (file)
index c3f26a3..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-
-// ships required in order to run this code
-#ship debug        : Debug
-#ship iscratch       : Iscratch
-
-// instructions not in any codebag are part of the "root codebag"
-// which is dispatched when the code is loaded
-
-debug.data:   deliver;
-BOB:          sendto iscratch.cbd;
-iscratch.cbd:   [*] take, deliver;
-debug.data:   [*] take, deliver;
-
-
-// This codebag illustrates how to do a loop.  Notice that this
-// is actually an uncontrolled data emitter -- it could clog the
-//  switch fabric!
-
-BOB: {
-  12:           sendto debug.data;
-  13:           sendto debug.data;
-  14:           sendto debug.data;
-  BOB:          sendto iscratch.cbd;
-}
-