[Ruby]取得網頁資料
require "net/http" reponse = Net::HTTP.get_response('www.oreilly.com','/about/') #列印網頁所傳回的代碼並以數字輸出: print response.code.to_i #列印網頁內容: print response.body