summaryrefslogtreecommitdiff
path: root/test.stage
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-30 09:59:47 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-30 09:59:47 -0700
commit9e6dc529833d17374a73bae1f30c7970f936f7cc (patch)
treedf46666b06065d6aefaf64e5722b57ff07f0a9e8 /test.stage
parent00fb7e6f65faf72a85c72f3775e49345aeb7442f (diff)
downloadstage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.gz
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.bz2
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.tar.xz
stage-9e6dc529833d17374a73bae1f30c7970f936f7cc.zip
Functions exists/delete work now.
Diffstat (limited to 'test.stage')
-rw-r--r--test.stage4
1 files changed, 4 insertions, 0 deletions
diff --git a/test.stage b/test.stage
index 516471d..060e11d 100644
--- a/test.stage
+++ b/test.stage
@@ -48,6 +48,10 @@ situation <<start>>
48 display("This is the setup phase for start, " + name); 48 display("This is the setup phase for start, " + name);
49 sillyDisplay( "Hello", name == player.name ); 49 sillyDisplay( "Hello", name == player.name );
50 50
51 display( exists(name) );
52 delete( name );
53 display( exists(name) );
54
51 getThing(); 55 getThing();
52 myGoto( <<stuff>> ); 56 myGoto( <<stuff>> );
53 display("You shouldn't see this."); 57 display("You shouldn't see this.");