From 0433eb31936fc72486e9a81732d5bcd38cf5808a Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Mon, 2 Jan 2012 00:26:29 -0700 Subject: Variables upconvert on add now. It's not perfect, but it's decent for now, and early testing. --- test.stage | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'test.stage') diff --git a/test.stage b/test.stage index 3fe467c..66a9b70 100644 --- a/test.stage +++ b/test.stage @@ -17,7 +17,13 @@ situation <> { setup { - display( random( 1, 3 ) ); + stuff = {}; + stuff['bob'] = {'joe': 'hi', 'sub': {1: 5, 2: 8} }; + stuff['bob']['sub'][55] = "aoeu"; + stuff['bob'] = 'hia'; + stuff['joe'] = stuff['bob']; + stuff['joe'] += 'aoeu'; + display( stuff['bob']['sub'][55] ); exit(); } -- cgit v1.2.3