Sum of a series: Difference between revisions

no edit summary
(Add Seed7 example)
No edit summary
Line 499:
</lang>
 
=={{header|Liberty BASIC}}==
<lang lb>
for i =1 to 1000
sum =sum +1 /( i^2)
next i
 
print sum
 
end
</lang>
=={{header|Logo}}==
<lang logo>to series :fn :a :b
Anonymous user