-ve sign in composite calculation procedure

Issue #148 resolved
Randle Taylor repo owner created an issue

The following result line fails to validate:

result = -10*foo+bar

Validation regex needs to account for possible -ve sign. As a workaround do:

result = (-10*foo)+bar

Comments (3)

  1. Log in to comment