source: git/Tst/Old/ch.tst @ 935bf64

fieker-DuValspielwiese
Last change on this file since 935bf64 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: 488 bytes
Line 
1//
2// test script for char command
3//
4pagelength = 10000;
5ring r1 = 32003,(x,y,z),dp;
6r1;
7int k1;
8k1=char(r1);
9k1;
10"-----------------------------------";
11ring r2 = 0,(x,y,z,a,b,c),(ds(3),dp);
12int k2;
13k2=char(r2);
14k2;
15"------------------------------------";
16ring r3 = 10,(x(1..6)),(lp(2),dp(4));
17int k3;
18k3=char(r3);
19k3;
20"------------------------------------";
21ring r4 =  0,(x,y,z),(c,dp);
22int k4;
23k4=char(r4);
24k4;
25listvar(all);
26kill r1,r2,r3,r4,k1,k2,k3,k4;
27LIB "tst.lib";tst_status(1);$
Note: See TracBrowser for help on using the repository browser.