Please enable JavaScript in your browser!
Home
Explore
Help
Sign In
nitrofurano
/
rubyscripts
Watch
1
Star
0
Fork
0
Files
Issues
0
Pull Requests
0
Wiki
Tree:
0db0c99458
Branches
Tags
master
rubyscripts
/
minimalexamples
/
maths
/
mathexp.rb
mathexp.rb
74 B
History
Raw
1
2
3
4
5
for f in 1..20
puts "Math.exp("+f.to_s+")="+Math.exp(f).to_s
end