Numerical integration: Difference between revisions

Nimrod -> Nim
m (→‎{{header|REXX}}: aligned some statements, added whitespace.)
(Nimrod -> Nim)
Line 2,596:
trapezium(1/x, x, 1, 100, 10000) - log(100), bfloat;</lang>
 
=={{header|NimrodNim}}==
{{trans|Python}}
<lang nimrodnim>type Function = proc(x: float): float
type Rule = proc(f: Function; x, h: float): float
 
Anonymous user