Thank you for your feedback
num = (ch-'0') + (num * 10); instead of num += (ch-'0') * 10;
this doesn't parse floats correctly. it parses "3.1" as 1.3 and "3.14" as 0.53
Scala tests fails with this error
Test Suite Aborted Exception encountered when invoking run on a nested suite - Unable to load a Suite class that was discovered in the runpath: IsomorphismSpec
Loading collection data...
Thank you for your feedback
num = (ch-'0') + (num * 10);
instead of
num += (ch-'0') * 10;
this doesn't parse floats correctly. it parses "3.1" as 1.3 and "3.14" as 0.53
Scala tests fails with this error
Test Suite Aborted
Exception encountered when invoking run on a nested suite - Unable to load a Suite class that was discovered in the runpath: IsomorphismSpec