#!/opt/alt/ruby27/bin/ruby
require 'lsapi'
$count = 0;
while LSAPI.accept != nil
print "HTTP/1.0 200 OK\r\nContent-type: text/html\r\n\r\nHello World! \##{$count}
\r\n"
ENV.each_pair {|key, value| print "#{key} is #{value}
\r\n" }
$count = $count + 1
end