School 42 project, a polynomial equation solver written in Haskell. Solves equations up to degree 2.
make./computor "5 * X^2 + 3 * X + 2 = 1 + 1"
# Reduced From: 5 * X^2 + 3 * X = 0
# Polynomial degree: 2
# Discriminant is strictly positive, the two solutions are:
# 0.0
# -0.6