#!/usr/bin/env ruby -wKU
def anchor(string)
"<A href=\"%s\">%s</A>" % [string,yield]
end

a = anchor("goat") do
"moow"
end

puts a