How do you solve the annoying problem of repeating definitions? How to implement variable reassignment? #2032
Unanswered
deahhh
asked this question in
Questions about using Pluto
Replies: 1 comment
-
Use begin
local fig = Figure()
local ax = Axis(fig[1, 1])
...
fig
end If you need a lot of variables to be let
fig = Figure()
ax = Axis(fig[1, 1])
...
fig
end Done like this, you can use |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Beta Was this translation helpful? Give feedback.
All reactions