From 089476ea2f066a56e07636a6e72fa04471f7ac9f Mon Sep 17 00:00:00 2001 From: Diserere Date: Wed, 5 Apr 2017 07:15:53 +0300 Subject: [PATCH] Corrected example for array initialization (#22) Given example does not initialize an array - there is a probably typo in code sample. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 33d8e58..6b5c3d0 100644 --- a/README.md +++ b/README.md @@ -885,7 +885,7 @@ array[0] = val array[1] = val array[2] = val array=([2]=val [0]=val [1]=val) -array(val val val) +array=(val val val) ``` To display a value at specific index use following syntax: