/test/examples/hello_world.e
Specman e | 15 lines | 12 code | 3 blank | 0 comment | 0 complexity | db5e633e26f825c4333cc3cca7cbeb5b MD5 | raw file
1class HELLO_WORLD 2 3create {} 4 make 5 6feature {} 7 make 8 do 9 std_output.put_line("Hello, world!") 10 debug 11 std_output.put_line("Welcome to Liberty!") 12 end 13 end 14 15end