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