testEngine function

void testEngine()

Tests the functions above.

Implementation

void testEngine() {
  String formula = '300.0 + ( 25.0 * t * t ) + ( 24.0 * t )';
  makeVisualTree(formula);
  print(patternParser(formula));
  print(astParser(formula));
}