Roots of a function: Difference between revisions

Content added Content deleted
Line 702:
=={{header|Dart}}==
{{trans|Scala}}
<lang Dart>import 'dart:async';
 
double fn(double x) => x * x * x - 3 * x * x + 2 * x;