RosettaCodeData/Task/Power-set/Sidef/power-set.sidef

5 lines
76 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
var arr = %w(a b c)
for i in (0 .. arr.len) {
say arr.combinations(i)
}