[Mumps2Py:] [67] moved the global variable assignments to the bottom. |
[ Thread Index |
Date Index
| More lists.mumps2py.org/discuss Archives
]
Revision: 67
Author: pgallot
Date: 2008-01-30 23:31:22 +0000 (Wed, 30 Jan 2008)
Log Message:
-----------
moved the global variable assignments to the bottom.
global variables not currently being supported.
Modified Paths:
--------------
trunk/testfiles/setsvars.mps
Modified: trunk/testfiles/setsvars.mps
===================================================================
--- trunk/testfiles/setsvars.mps 2008-01-29 22:58:06 UTC (rev 66)
+++ trunk/testfiles/setsvars.mps 2008-01-30 23:31:22 UTC (rev 67)
@@ -3,7 +3,8 @@
set i="2"*3 write i,! ; writes 6
set i=" 2"*3 write i,! ; writes 6
set i="""hello""" write i,! ; writes "hello"
+ set a="test" write a,! ; writes test
+ set a(1)="tst" write a(1),! ; write tst
set ^a="test" write ^a,! ; writes test
- set a="test" write a,! ; writes test
set ^a(1)="tst" write ^a(1),! ; write tst
- set a(1)="tst" write a(1),! ; write tst
+