Merged with Mitchell's branch and resolved conflicts. Haml support remains rudimentary.
[ohcount] / test / src_dir / eiffel.e
1 class
2         HELLO_WORLD
3 create
4         make
5 feature
6         make
7                 do
8                         -- prints "Hello world!" and starts new line
9
10                         print ("Hello, world!%N")
11
12                 end
13 end