RosettaCodeData/Task/Power-set/Sidef/power-set.sidef
2023-07-01 13:44:08 -04:00

4 lines
76 B
Text

var arr = %w(a b c)
for i in (0 .. arr.len) {
say arr.combinations(i)
}