How to carry over variable values accross generations? #192
-
Or maybe even save the values in files to use in the next session. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 2 replies
-
Hi @gilroff, Closest thing I can think of is the In order to keep variables across sessions, I would probably have to implement a new shortcode like |
Beta Was this translation helpful? Give feedback.
-
Hello again, Just wanted to let you know that you can This is achieved with the new
Additionally, I implemented
Check the Manual for more info and let me know if you have any questions. Thanks! |
Beta Was this translation helpful? Give feedback.
Hi @gilroff,
Closest thing I can think of is the
[remember]
shortcode, which allows specific variables to persist over the course of a batch run.In order to keep variables across sessions, I would probably have to implement a new shortcode like
[json]
... it's not a bad idea. EDIT: Or perhaps new kwargs for[get]
and[set]
to read/write from an external file.