-- -*- mode: eiffel -*-
-- $Id: hello.se,v 1.2 2001/06/18 01:13:58 doug Exp $
-- http://www.bagley.org/~doug/shootout/
class HELLO
creation make
feature
make is
local
do
std_output.put_string("hello world")
std_output.put_new_line
end
end