Files
EWF/test/autotest/test_suite/application.e
2010-03-09 11:37:55 +00:00

25 lines
303 B
Plaintext

note
description : "test_suite application root class"
date : "$Date$"
revision : "$Revision$"
class
APPLICATION
inherit
ARGUMENTS
create
make
feature {NONE} -- Initialization
make
-- Run application.
do
--| Add your code here
print ("Hello Eiffel World!%N")
end
end