summaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-12-29 17:03:20 -0700
committerMike Buland <eichlan@xagasoft.com>2011-12-29 17:03:20 -0700
commitf404d991aa53ed81855e51b597bfe1d5c2288b42 (patch)
treed2ce081cc722eccc089591c63ea0a345b4b4701c /src/main.cpp
parent1bd7f709f5217b248fcb3a4c7be2eeca84fec795 (diff)
downloadstage-f404d991aa53ed81855e51b597bfe1d5c2288b42.tar.gz
stage-f404d991aa53ed81855e51b597bfe1d5c2288b42.tar.bz2
stage-f404d991aa53ed81855e51b597bfe1d5c2288b42.tar.xz
stage-f404d991aa53ed81855e51b597bfe1d5c2288b42.zip
Most operators work, as well as if/then/else.
Loops should be very easy, but we don't have lists working yet, next is scope selection.
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 8fe5247..273158b 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -30,6 +30,9 @@ int main( int argc, char *argv[] )
30 GameState gs( pGame ); 30 GameState gs( pGame );
31 gs.init(); 31 gs.init();
32 32
33 gs.gotoSituation("stuff");
34 gs.gotoSituation("start");
35
33 return 0; 36 return 0;
34} 37}
35 38