app3.scala
author Christian Urban <urbanc@in.tum.de>
Sat, 20 Oct 2012 16:44:39 +0100
changeset 42 5529cfb2a81e
parent 7 73cf4406b773
permissions -rw-r--r--
tuned

val my_urls = """urbanc""".r

def crawl(url: String, n: Int) : Unit = {
  if (n == 0) ()
  else if (my_urls.findFirstIn(url) == None) ()
  else {
    println("Visiting: " + n + " " + url)
    for (u <- get_all_URLs(get_page(url))) crawl(u, n - 1)
  }
}