From 781ebf270b3001883847a28237b57d93dff1269a Mon Sep 17 00:00:00 2001 From: Dmytro Sytnik Date: Mon, 13 May 2024 15:21:49 -0400 Subject: [smalltalk/en] add mixed type array (#4109) --- smalltalk.html.markdown | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/smalltalk.html.markdown b/smalltalk.html.markdown index 9c2e870e..e1ae832c 100644 --- a/smalltalk.html.markdown +++ b/smalltalk.html.markdown @@ -441,8 +441,9 @@ Fixed length collection - WordArray: Array limited to word elements (0-2^32) ```smalltalk -| b x y sum max | +| b x y z sum max | x := #(4 3 2 1). "constant array" +z := #(1 2 3 'hi'). "mixed type array" x := Array with: 5 with: 4 with: 3 with: 2. "create array with up to 4 elements" x := Array new: 4. "allocate an array with specified size" x "set array elements" -- cgit v1.2.3