diff options
author | Camil Staps | 2017-07-18 12:05:16 +0000 |
---|---|---|
committer | Camil Staps | 2017-07-18 12:05:16 +0000 |
commit | 7d8baccc8abde6eb547dca7fa519ddac380c90c8 (patch) | |
tree | 8a643f9e8398ff44238f2c1187d659519121b71c /test.sil | |
parent | Easier interface (diff) |
Allow for multiple initialisations on one line
Diffstat (limited to 'test.sil')
-rw-r--r-- | test.sil | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -1,8 +1,8 @@ Int second(Int x, Int y) { - Int z; - z := x; + Int a, b; + a := x; x := y; - y := z; + y := a; return y; } |