Showing content from https://raw.github.com/cfengine/core/master/examples/arrays.cf below:
#+begin_src cfengine3 bundle common g { vars: "array[key1]" string => "one"; "array[key2]" string => "two"; } bundle agent __main__ { vars: "thing[1][color]" string => "red"; "thing[1][name]" string => "one"; "thing[2][color]" string => "blue"; "thing[2][name]" string => "two"; "_thing_idx" slist => sort( getindices( thing ), lex ); reports: "Keys in default:g.array = $(with)" with => join( ", ", sort( getindices( "default:g.array" ), lex)); "Keys of default:main.thing[1] = $(with)" with => join( ", ", sort( getindices( "default:main.thing[1]" ), lex)); "Thing $(thing[$(_thing_idx)][name]) is $(thing[$(_thing_idx)][color])"; } #+end_src ############################################################################### #+begin_src example_output #@ ``` #@ R: Keys in default:g.array = key1, key2 #@ R: Keys of default:main.thing[1] = color, name #@ R: Thing one is red #@ R: Thing two is blue #@ ``` #+end_src
RetroSearch is an open source project built by @garambo
| Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4