diff options
author | Mike Buland <eichlan@xagasoft.com> | 2011-12-27 00:32:12 -0700 |
---|---|---|
committer | Mike Buland <eichlan@xagasoft.com> | 2011-12-27 00:32:12 -0700 |
commit | 40e08192a08f55b5090d5ef28f48c74613e2e5a0 (patch) | |
tree | 352817365ce93d8d022cc1e04f5a411ce0df2b01 /test.stage | |
parent | f33fdd93ef93fdbb0e6b3a8e2ecb80b78f1b2816 (diff) | |
download | stage-40e08192a08f55b5090d5ef28f48c74613e2e5a0.tar.gz stage-40e08192a08f55b5090d5ef28f48c74613e2e5a0.tar.bz2 stage-40e08192a08f55b5090d5ef28f48c74613e2e5a0.tar.xz stage-40e08192a08f55b5090d5ef28f48c74613e2e5a0.zip |
Wow, a whole lot of code builds now.
Diffstat (limited to 'test.stage')
-rw-r--r-- | test.stage | 14 |
1 files changed, 13 insertions, 1 deletions
@@ -11,6 +11,18 @@ global | |||
11 | 11 | ||
12 | function hello( a, b, c ) | 12 | function hello( a, b, c ) |
13 | { | 13 | { |
14 | bob = 5 + 55 * 2 + 1; | 14 | joe = a; |
15 | if b < c then | ||
16 | { | ||
17 | sam = b * c + 1; | ||
18 | } | ||
19 | else if something <= c then | ||
20 | { | ||
21 | x * 43; | ||
22 | } | ||
23 | while true do | ||
24 | { | ||
25 | bob = 5 + 55 * 2 + 1; | ||
26 | } | ||
15 | } | 27 | } |
16 | 28 | ||