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
endIf you need a lot of variables to be let
fig = Figure()
ax = Axis(fig[1, 1])
...
fig
endDone 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
Uh oh!
There was an error while loading. Please reload this page.
-
Beta Was this translation helpful? Give feedback.
All reactions