djspiewak / anti-xml

The scala.xml library has some very annoying issues. Time for a clean-room replacement!
http://anti-xml.org
Other
169 stars 35 forks source link

Added initialCommands to sbt REPL. #27

Closed eed3si9n closed 13 years ago

eed3si9n commented 13 years ago

This automatically executes the following lines when you run $ sbt console.

import com.codecommit.antixml._
val bookstore = <bookstore><book><title>For Whom the Bell Tolls</title><author>Hemmingway</author></book><book><title>I, Robot</title><author>Isaac Asimov</author></book><book><title>Programming Scala</title><author>Dean Wampler</author><author>Alex Payne</author></book></bookstore>.convert
val books = bookstore \ "book"

When you want to test something quickly, it comes in handy.