From: guigues Date: Mon, 18 Feb 2008 07:50:41 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: r0.6.1~187 X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=commitdiff_plain;h=c0211ff2293c1160cbb050f209b148549e690702;p=bbtk.git *** empty log message *** --- diff --git a/packages/std/bbs/appli/exampleAdd.bbs b/packages/std/bbs/appli/exampleAdd.bbs new file mode 100644 index 0000000..67a1b7b --- /dev/null +++ b/packages/std/bbs/appli/exampleAdd.bbs @@ -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 index 4e4e7f1..0000000 --- a/packages/std/bbs/appli/testAdd.bbs +++ /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$