On Thu, May 26, 2011 at 9:29 PM, Yoshiki Ohshima
<yoshiki@vpri.org> wrote:
BTW, the page (http://rmod.lille.inria.fr/web/pier/software/Fuel)
says:
Gofer new
� � � �squeaksource: 'Fuel';
� � � �package: 'ConfigurationOfFuel';
� � � �load.
((Smalltalk at: #ConfigurationOfFuel) project =latestVersion) load: #(Core Tests Benchmarks).
it does not appear to be a valid expression. �What is the right
expression?
the =
Try:
Gofer new
� � � �squeaksource: 'Fuel';
� � � �package: 'ConfigurationOfFuel';
� � � �load.
((Smalltalk at: #ConfigurationOfFuel) project latestVersion) load: #(Core Tests Benchmarks).
�