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
I am not able to use the newStringStream() function from streams module (stdlib), whether by itself or as part of the marshal library.
import streams var test = newStringStream("") echo test
Error: undeclared identifier: 'newStringStream'
It should just work, especially where marshal module is concerned.
$ nim -v Nim Compiler Version 0.19.4
The text was updated successfully, but these errors were encountered:
No, you need to use import streams and learn the very basics of Nim.
import streams
Sorry, something went wrong.
I use import streams, and the problem also happens when trying to use $$ in marshal library, which definitely does import streams.
Ah, wait, some more googling points to streams not working in JS target?
I no longer use Nim, but thanks for fixing the issue <3
Well you should use Nim. ;-)
Successfully merging a pull request may close this issue.
I am not able to use the newStringStream() function from streams module (stdlib), whether by itself or as part of the marshal library.
Example
Current Output
Expected Output
It should just work, especially where marshal module is concerned.
Possible Solution
Additional Information
The text was updated successfully, but these errors were encountered: