From 99a4ee0ad95a0bfd31ac0cfe30a8bc52576701b2 Mon Sep 17 00:00:00 2001 From: Jack Date: Tue, 16 Oct 2018 11:40:00 +0200 Subject: [PATCH] Extend 09-object-types.md with argument array Add a small snippet demonstrating how to define an argument array instead of a simple string. --- doc/09-object-types.md | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/doc/09-object-types.md b/doc/09-object-types.md index e60204749..bd6572c15 100644 --- a/doc/09-object-types.md +++ b/doc/09-object-types.md @@ -230,6 +230,12 @@ Argument order: ..., -3, -2, -1, , 1, 2, 3, ... ``` +Define argument array: + +``` +value = "[ 'one', 'two', 'three' ]" +``` + Argument array with `repeat_key = true`: ```