/tutorial/plugin/external_type/test.e
http://github.com/tybor/Liberty · Specman e · 17 lines · 14 code · 3 blank · 0 comment · 0 complexity · e1ec6265814cdd9a1e87af4987902a47 MD5 · raw file
- class TEST
- create {}
- make
- feature {}
- make
- local
- uint: UNSIGNED_INT_WRAPPER
- do
- create uint.from_integer_64({INTEGER_64 42})
- io.put_string("The (unsigned) answer is: ")
- io.put_integer(uint.as_integer_64)
- io.put_new_line
- end
- end -- class TEST