Rename *ll* and *ul* to ll and ul in make-defint-assumptions
[maxima.git] / archive / share / trash / batch.transcript
blobe8eab480750c3a5b799fa4f47f462b67a4d18408
1 Time= 23 msec.
2 (D3)                            [DSK, SHARE2]
4 (C4) /* next, calling the function DISOWN will set TTYOFF to TRUE and
5    DYNAMALLOC to TRUE and then disown the running macsyma.
6    The BATCH will continue though with results still going to the
7    WRITEFILE. */
9 DISOWN();
10 Time= 3 msec.
11 (D4)                                FALSE
13 (C5) /* You might one to have your job start running later.
14 here I'll just sleep for 3 minutes. */
16 SLEEP(0,3);
17 Time= 6 msec.
18 (D5)                                AWAKE
20 (C6) /* Next do a computation */
22 f(x):=x^x;
23 Time= 8 msec.
24                                            X
25 (D6)                              F(X) := X
27 (C7) for j:1 thru 5 do print (j,f(j));
28 1 1 
29 2 4 
30 3 27 
31 4 256 
32 5 3125 
33 Totaltime= 185 msec.  GCtime= 5 msec.
34 (D7)                                 DONE
36 (C8) /* Next close the writefile, naming it something useful. */
38 CLOSEFILE(BATCH,DEMCRF);