source: git/Tst/Old/numvar.tst @ b35b93

spielwiese
Last change on this file since b35b93 was b35b93, checked in by Olaf Bachmann <obachman@…>, 26 years ago
This commit was generated by cvs2svn to compensate for changes in r1396, which included commits to RCS files with non-trunk default branches. git-svn-id: file:///usr/local/Singular/svn/trunk@1397 2c84dea3-7e68-4137-9b89-c4e89433aadc
  • Property mode set to 100644
File size: 424 bytes
Line 
1//
2// test script for nvars command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),(c,ds);
6r1;
7nvars(r1);
8"--------------------------------";
9ring r2=23,(x(1..36)),ds;
10r2;
11nvars(r2);
12"-------------------------------";
13ring r3=0,(x,y,z(1..18)),ds;
14r3;
15nvars(r3);
16"------------------------------";
17ring r4=0,(x(1..6),y(1..7),z(1..8),a),ds;
18r4;
19nvars(r4);
20"--------------------------------";
21listvar(all);
22kill r1,r2,r3,r4;
23$;
Note: See TracBrowser for help on using the repository browser.