source: git/Tst/Old/index.tst @ e706ff

spielwiese
Last change on this file since e706ff was 46976a6, checked in by Olaf Bachmann <obachman@…>, 26 years ago
* added status check to regress.cmd * added tst_status(1); call to each tst file, just before quit git-svn-id: file:///usr/local/Singular/svn/trunk@2271 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 292 bytes
Line 
1intvec iv=1,2,3,4;
2iv;
3iv[1];
4iv[2];
5iv[2..3];
6string s="12345";
7s;
8s[1];
9s[2];
10s[2..4];
11s[2,2];
12ring r;
13ideal i=1,2,3,4,5;
14i;
15i[1];
16i[2];
17i[2..4];
18matrix m[2][3]=1,2,3,4,5,6;
19m;
20m[1,1];
21m[2,1];
22m[1,2];
23m[2,2];
24m[1..2,1];
25m[1,1..2];
26m[1..2,2..3] ;
27listvar(all);
28LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.