Generating a class from string and instantiating it in Scala 2.10

W.r.t compilation toolboxes can only run expressions = return values, but not resulting classes or files/byte arrays with compilation results. However it’s still possible to achieve what you want, since in Scala it’s so easy to go from type level to value level using implicit values: Edit. In 2.10.0-RC1 some methods of ToolBox have been … Read more

tech