]> Creatis software - bbtk.git/commitdiff
*** empty log message ***
authorguigues <guigues>
Mon, 18 Feb 2008 07:50:41 +0000 (07:50 +0000)
committerguigues <guigues>
Mon, 18 Feb 2008 07:50:41 +0000 (07:50 +0000)
packages/std/bbs/appli/exampleAdd.bbs [new file with mode: 0644]
packages/std/bbs/appli/testAdd.bbs [deleted file]

diff --git a/packages/std/bbs/appli/exampleAdd.bbs b/packages/std/bbs/appli/exampleAdd.bbs
new file mode 100644 (file)
index 0000000..67a1b7b
--- /dev/null
@@ -0,0 +1,13 @@
+description "std::Add box example. Also shows how to print an output of a box in bbi. "
+category "example"
+
+include std
+new Add a
+set a.In1 1
+set a.In2 2
+
+# In a print command, any string enclosed between dollars 
+# is interpreted as an output of a box (of the form 'box.output').
+# Before printing, bbi substitutes it by the value of the output.
+# There must be an adaptor to string for that type of output.
+print $a.Out$
diff --git a/packages/std/bbs/appli/testAdd.bbs b/packages/std/bbs/appli/testAdd.bbs
deleted file mode 100644 (file)
index 4e4e7f1..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-description "Tests the std::Add box"
-category "test"
-
-include std
-new Add a
-set a.In1 1
-set a.In2 2
-print $a.Out$