/tutorial/get_text/simple/example.e
Specman e | 18 lines | 14 code | 4 blank | 0 comment | 0 complexity | 0357c0045dbb1ad7028fe43ebe70e415 MD5 | raw file
1class EXAMPLE 2 3create {ANY} 4 make 5 6feature {} 7 make 8 do 9 io.put_string(translator.translation("Hello world!")) 10 io.put_new_line 11 end 12 13 translator: TRANSLATOR 14 once 15 create Result.init 16 end 17 18end -- class EXAMPLE