What kind of constructs need 'scalac' compile and how to make an equivalent that will work in interpreter?
Edit: I want to use scala instead of python as a scripting language. (with #!/usr/bin/scala)
|
|
You ought to be able to do anything in the REPL that you can do in outside code. Keep in mind that:
|
|||
|
|
EDIT: after reading your question again, I have to admit, that I didn't really answer it ;). But maybe it still helps. I know of two limitations of interpreter (or REPL), when it comes to loading scala files (in order to interactively test them).
Furthermore there is a problem with circular dependencies, that I don't know a workaround for: Suppose there is a Class
Although I already provided a newer definition of |
|||
|
|
|
I think everything in Scala will work from the interpreter as well (which I believe just calls the compiler under the hood anyway). Do you suspect something to not work? Or is this a trick/interview question (I suppose anything that want to directly interact with the class loader or class files may behave differently in the two environments, but I have no idea really). |
|||
|
|