RosettaCodeData/Task/Combinations/Eiffel/combinations-2.e

22 lines
196 B
Text
Raw Permalink Normal View History

2015-02-20 00:35:01 -05:00
class
APPLICATION
2015-11-18 06:14:39 +00:00
2015-02-20 00:35:01 -05:00
create
2015-11-18 06:14:39 +00:00
make
2015-02-20 00:35:01 -05:00
feature
2015-11-18 06:14:39 +00:00
2015-02-20 00:35:01 -05:00
make
2015-11-18 06:14:39 +00:00
do
create comb.make (5, 3)
across
comb.sol as ar
loop
io.put_string (ar.item.out + "%T")
end
end
2015-02-20 00:35:01 -05:00
comb: COMBINATIONS
2015-11-18 06:14:39 +00:00
2015-02-20 00:35:01 -05:00
end