Template:Load
Revision as of 11:48, 28 July 2022 by Kevin Wang (talk | contribs) (Created page with " {{#vardefine:load_i|1}}{{#while:|{{{{{#var:load_i}}|}}}|{{#vardefine:{{{ {{#var:load_i}} }}}|{{#var:prev_{{{ {{#var:load_i}} }}}}}}}{{#vardefine:load_i|{{#expr:{{#var:load_i}...")
Given a list of variable names {x1, x2, x3, ...}, set the value of those variables to the values of {prev_x1, prev_x2, prev_x3}.
Use this template to restore the variables of a page; should be used with Template:Save.
Example:
Input | Output |
---|---|
{{#vardefine:x|1}}{{#vardefine:y|2}}{{#vardefine:z|blue}} {{Save|x|y|z}} {{#vardefine:x|1a}}{{#vardefine:y|2a}}{{#vardefine:z|red}} {{#var:x}}, {{#var:y}}, {{#var:z}} {{Load|x|y|z}} {{#var:x}}, {{#var:y}}, {{#var:z}} |
1a, 2a, red
|