RosettaCodeData/Task/Variables/Eiffel/variables-1.e
2015-02-20 00:35:01 -05:00

23 lines
271 B
Text

class
APPLICATION
inherit
ARGUMENTS
create
make
feature {NONE} -- Initialization
make
-- Run application.
local
i: INTEGER
s: STRING
do
i := 100
s := "Some string"
create a.make_empty
end
feature {NONE} -- Class Features
a: ARRAY[INTEGER]