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

6 lines
123 B
Smalltalk
Raw Permalink Normal View History

2013-04-10 23:57:08 -07:00
#(1 2 4) power do: [ :each |
each asArray printNl ].
#( 'A' 'C' 'E' ) power do: [ :each |
each asArray printNl ].