RosettaCodeData/Task/Power-set/Smalltalk/power-set-2.st

6 lines
123 B
Smalltalk
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
#(1 2 4) power do: [ :each |
each asArray printNl ].
#( 'A' 'C' 'E' ) power do: [ :each |
each asArray printNl ].