2016-10-24 16:27 GMT+02:00 Santiago Bragagnolo <santiagobragagnolo@gmail.com>:
(system home / #pharo) ensureCreateDirectory.
pharo5 := system loadPharo: 50 into: system home / #pharo.
pharo5WithScale := system loadBaseline: 'Scale' from: 'github://path' into: pharo5.

Maybe we should add #execute: into��SCImageBundle? With this we could simply write:

pharo5 := system loadPharo: 50 into: system home / #pharo.
pharo5 execute: myCodeString

And maybe for convenience we could ask #asImageBundle on passed arguments of system #execute: methods?
system execute: myCodeString into: 'myPharo' asFileReference��