You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There should perhaps be a face for types and a face for symbols such as +=-^/*: which act as operators so that they would not have necessarily the same colour as types.
functionquadratic2(a::Float64, b::Float64, c::Float64)
# in emacs Float64 and = ^ - * are coloured the same
sqr_term =sqrt(b^2-4a*c)
r1 =quadratic(a, sqr_term, b)
r2 =quadratic(a, -sqr_term, b)
r1, r2
end