-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
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
Show inline values #384
Show inline values #384
Conversation
6b85b3b
to
f9e5065
Compare
var3 = "hola" | ||
var4 = {"a": 1, "b": 2} | ||
var5 = [1, 2, 3] | ||
var6 =var1 + var2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
What happens for cases like self.var1
? Or cases like [var1, var2]
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Cases of variables inside other variables works, and now I updated the code in order to work with self.
50318e4
to
43eac63
Compare
Closed: #167