Add some missing files for the regression tests.
[style_checker.git] / regtests / hello.e
blob3bf877e3be3a4eb4ca1424966bcade967d5f17e5
1 indexing
2 description: "A simple class to display a message"
3 author: "Pascal Obry"
5 class
6 HELLO
8 feature -- Output
10 output is
12 io.print ("My message is simply : ")
13 io.print (msg)
14 io.print ("%N")
15 end
17 feature -- Modifier
19 set (str : STRING) is
21 msg := str
22 end
24 feature {NONE} -- Implementation
26 msg : STRING
28 end