A function taking a Scala bridge as its only argument.
This function is called immediately after the bridge is connected, which
does not happen until the bridge is actually used and may be long after
this function finishes. This is where setup code goes, like global
imports, objects, classes, methods, etc. For example, it might equal
function(s) { s + 'import scala.util.Random' }
. Note the
use of the execution operator +
instead of the evaluation operator
*
.