summaryrefslogtreecommitdiffstats
path: root/bank-eiffel/application.e
blob: 55b02d96184cc6d4caa661b717089700e59b7bda (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
class
	APPLICATION

inherit
	ARGUMENTS

create
	make

feature {NONE} -- Initialization

	make
			-- Run application.
		do
			--| Add your code here
			print ("Hello Eiffel World!%N")
		end

end