views:

181

answers:

1

Used as a scripting language, does Scala have some sort of include directive, or is there a way to launch a script from an other script ?

+4  A: 

The scala command has the :load filename command to load a Scala file interactively. Alternatively the scala command's -i filename argument can be used to preload the file.

Jim Ferrans