It is not immediately obvious how to use the play console so this might help.
Play2 provides an equivalent of the rails console you might be used to.
cd myapp
play console
In the console run
> import play.core._
> new StaticApplication(new java.io.File("."))
You can now import models etc
import models.User._
User.createOne(1, "Joe", "[email protected]")