RoloLudo/RoloLudo.package/DeckOfCards.class/class/cards.st

10 lines
209 B
Smalltalk
Raw Normal View History

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