Skip to content

Instantly share code, notes, and snippets.

@cflewis
Created November 5, 2009 06:48
Show Gist options
  • Save cflewis/226826 to your computer and use it in GitHub Desktop.
Save cflewis/226826 to your computer and use it in GitHub Desktop.
object TwitterOpener {
def main(args:Array[String]) = {
val twitterURL = new URL("http://twitter.com/statuses/public_timeline.rss")
val xmlRss = XML.load(twitterURL.openStream())
println(xmlRss)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment