Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
22
Task/Integer-sequence/Eiffel/integer-sequence.e
Normal file
22
Task/Integer-sequence/Eiffel/integer-sequence.e
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
class
|
||||
APPLICATION
|
||||
inherit
|
||||
ARGUMENTS
|
||||
create
|
||||
make
|
||||
feature {NONE} -- Initialization
|
||||
make
|
||||
-- Run application.
|
||||
do
|
||||
from
|
||||
number := 0
|
||||
until
|
||||
number = number.max_value
|
||||
loop
|
||||
print(number)
|
||||
print(", ")
|
||||
number := number + 1
|
||||
end
|
||||
end
|
||||
number:INTEGER_64
|
||||
end
|
||||
Loading…
Add table
Add a link
Reference in a new issue