source: git/Tst/Old/lists.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: 389 bytes
Line 
1list l1=1,2,3;
2list l2="aa","bb",list();
3list l3=list(list(list()));
4l1;
5l2;
6l3;
7list l=l1,l2,l3,list();
8l;
9insert(l1,"-------",1);
10insert(l1,"-------",2);
11insert(l1,"-------",3);
12insert(l1,"-------",4);
13insert(l1,"-------",0);
14list L;
15list L1 = 1,2,3;
16L[1]= L1;
17L[1][2]; 
18L[1][2] = 0;
19L[1][2]; 
20L;
21L[1][1] = 0;
22L;
23L[1][1];
24L;
25LIB "tst.lib";tst_status(1);$
26LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.