2023-11-14 02:03:37 +00:00
|
|
|
accessing
|
2023-12-20 18:20:14 +00:00
|
|
|
cards
|
2023-11-14 02:03:37 +00:00
|
|
|
| response |
|
2023-12-20 18:20:14 +00:00
|
|
|
response := OrderedCollection new.
|
2023-11-14 16:21:21 +00:00
|
|
|
self suits keysDo: [:suit |
|
|
|
|
(self numeralCards, self faceCards) do: [:number|
|
2023-12-20 18:20:14 +00:00
|
|
|
response add: number asString, suit.
|
2023-11-14 16:21:21 +00:00
|
|
|
].
|
|
|
|
].
|
|
|
|
^ response
|