View Problem

Check your language appears on the langref.org site

Your language name should appear within the HTML found at the http://langreg.org main page.
ExpandDiskEdit
ruby
Net::HTTP.start(URL, 80) do |http|
status = if http.get('/').body =~ /#{SRCHEXP}/ then "offers" else "does not offer" end
puts "http:\/\/#{URL} #{status} #{LANGUAGE}"
end
ExpandDiskEdit
erlang
URL = "http://langref.org/", Language = "erlang", Regexp = ".*" ++ URL ++ Language ++ ".*",

case http:request(URL) of
{ok, {_, _, Body}} ->
case regexp:first_match(Body, Regexp) of
{match, _, _} -> io:format("Language ~s exists @ ~s~n", [Language, URL]);
_ -> false
end;
{error, ErrorInfo} -> throw("Error: " ++ http:format_error(ErrorInfo))
end,

Submit a new solution for ruby, csharp, or erlang
There are 11 other solutions in additional languages (clojure, cpp, fantom, fsharp ...)