require 'gserver'class HelloServer < GServer def serve(io) io.puts("Hello!") endendserver = HelloServer.new(1234)server.startserver.join