RoloLudo/RoloLudo.package/DeckOfCards.class/class/initialize.st

10 lines
208 B
Smalltalk
Raw Normal View History

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