[Mumps2Py:] [48] test file for testing the $DATA intrinsic function. |
[ Thread Index |
Date Index
| More lists.mumps2py.org/discuss Archives
]
Revision: 48
Author: pgallot
Date: 2008-01-23 21:38:14 +0000 (Wed, 23 Jan 2008)
Log Message:
-----------
test file for testing the $DATA intrinsic function.
Added Paths:
-----------
trunk/testfiles/set_fdata.mps
Added: trunk/testfiles/set_fdata.mps
===================================================================
--- trunk/testfiles/set_fdata.mps (rev 0)
+++ trunk/testfiles/set_fdata.mps 2008-01-23 21:38:14 UTC (rev 48)
@@ -0,0 +1,10 @@
+ s a=1,b=2
+ s c(b)=3
+ w !,"a:",$D(a),
+ W "b:",$D(b),
+ W "c:",$D(c)
+ W "c(b):",$D(c(b))
+ s c=4,
+ w !,"c:",$D(c)
+ W "d (not set):",$D(d)
+ W "c(9) (not set):",$D(c(9))