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

22 lines
196 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
class
APPLICATION
create
make
feature
make
do
create comb.make (5, 3)
across
comb.sol as ar
loop
io.put_string (ar.item.out + "%T")
end
end
comb: COMBINATIONS
end