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
print
Hi @fzyzcjy!
Thank you for working on this project.
Is your feature request related to a problem? Please describe.
Given the following sequence:
>>> DateTime.now(); >>> a = DateTime.now(); >>> a >>> >>> print(a) 2022-10-24 16:29:24.020502
I expected the line after >>> a to have the same result as print(a)
>>> a
print(a)
The text was updated successfully, but these errors were encountered:
Hi! Thanks for opening your first issue here! 😄
Sorry, something went wrong.
Yes this looks like a bug.
dart_interactive/packages/interactive/lib/src/executor.dart
Line 92 in cfe8098
For example, add a few debug logs to the result and see what happens, and we seem to be able to fix it easily.
Looking forward to your PR!
Typing the name of a variable / function will now print its value ins…
3e0a427
…tead of nothing. Fixes fzyzcjy#47.
Successfully merging a pull request may close this issue.
Hi @fzyzcjy!
Thank you for working on this project.
Is your feature request related to a problem? Please describe.
Given the following sequence:
I expected the line after
>>> a
to have the same result asprint(a)
The text was updated successfully, but these errors were encountered: