2009-12-14 10 views

Respuesta

1

¿No será útil depurar el intérprete de Scala (REPL)? Una forma más fresca de probar su código podría ser a través de sbt REPL.

1. sbt 
2. console 
3. scala (for Scala REPL); [cntrl d] to get back to sbt REPL 
4. compile 
5. test, if you have unit-tests to test code 
6. run If one has an object with a main method (or an object extending 
    the trait App 
Cuestiones relacionadas