/tutorial/get_text/library/example.e
http://github.com/tybor/Liberty · Specman e · 22 lines · 18 code · 4 blank · 0 comment · 0 complexity · 9f61d05f3276bfb72e361a36afdf6373 MD5 · raw file
- class EXAMPLE
- create {ANY}
- make
- feature {}
- make
- local
- lib: LIBRARY
- do
- create lib.make(translator)
- io.put_string(translator.translation("Hello from the program"))
- io.put_new_line
- lib.print_hello
- end
- translator: PROGRAM_TRANSLATOR
- once
- create Result.init
- end
- end -- class EXAMPLE