--- /dev/null
+// expected output
+#expect 12
+#expect 13
+#expect 14
+
+// ships required in order to run this code
+#ship debug : Debug
+#ship memory : Memory
+
+// instructions not in any codebag are part of the "root codebag"
+// which is dispatched when the code is loaded
+
+memory.out:
+ set ilc=*; collect packet, send;
+
+memory.inCBD:
+ set word= BOB;
+ deliver;
+
+BOB: {
+ debug.in:
+ set word= 12; deliver;
+ set word= 13; deliver;
+ set word= 14; deliver;
+}