We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dim t As _Float t = 1F300 Print t Print Using "##.##################^^^^"; t t = t * t Print t Print Using "##.##################^^^^"; t
Print is able to handle 1F300 but outputs INF D+300 when trying to print 1F600. Print Using correctly outputs the value.
INF D+300
The text was updated successfully, but these errors were encountered:
Print calls STR$() internally, so that's where it must be.
Sorry, something went wrong.
Darn it, F in scientific notation? Wasn't it only D and E?
There goes:
Oh well... print using:
No branches or pull requests
Print is able to handle 1F300 but outputs
INF D+300
when trying to print 1F600. Print Using correctly outputs the value.The text was updated successfully, but these errors were encountered: