Last active
January 21, 2022 15:01
-
-
Save brrd/12be4fc02b8156f6b558fc9548e2f133 to your computer and use it in GitHub Desktop.
Arrays dynamiques LodelScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
TEST <br> | |
<LET ARRAY="test"></LET> | |
<LET ARRAY="test.foo">bar</LET> | |
<LET VAR="lorem">baz</LET> | |
<LET ARRAY="test.#LOREM">ispum</LET> | |
res: [#TEST.FOO] - [#TEST.#LOREM] - [#TEST.BAZ]<br> | |
[#TEST|var_dump] | |
// TEST | |
// res: bar - ispum - ispum | |
// array(2) { ["foo"]=> string(3) "bar" ["baz"]=> string(5) "ispum"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment