From 9de9d4e733ce872806c569334af4c9ace01db203 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 6 Feb 2012 12:22:27 -0700 Subject: Important bugfix in stack code. Thanks david! --- test.stage | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'test.stage') diff --git a/test.stage b/test.stage index d1ba1b0..cc765a4 100644 --- a/test.stage +++ b/test.stage @@ -13,15 +13,19 @@ global } } +function getVal() +{ + global.stuff = {'hi': 5 }; +} + situation <> { setup { - x = [5, 4, 3]; - x = x + [[9, 8, 7]]; - display( debugString( x ) ); - - exit(); + if true then + { + getVal(); + } } enter -- cgit v1.2.3