From: Bernie <fb.mailing.list@...> Date: Sat, 28 Oct 2006 23:19:59 +0100
From the description in the reference manual (p637), I thought the
following would print 5 but I get 2. Can the container connoisseurs
put me right?
dim as container a, b, c
b = 2
c = 3
a = b + c + 0
print a
Bernie