home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
GEMini Atari
/
GEMini_Atari_CD-ROM_Walnut_Creek_December_1993.iso
/
files
/
language
/
isetl
/
infunc.t
< prev
next >
Wrap
Text File
|
1987-08-20
|
430b
|
20 lines
program x;
print "Series and Sums";
print "Enter the series function, as a function of one variable";
print " Use the form "
+ "'func(i); return <some expression using i>; end;'";
read f;
print "Enter the number of terms, N:";
read N;
print ["i", "f(i)", "%+[ f(x): x in [1..i]]" ];
for i in [1..N] do
print [i, f(i), %+[ f(x): x in [1..i]] ];
end;
end;
func(a); return a**2; end;
10;