March 24, 2019
6:45 p.m.
On 24/03/19 5:23 AM, test email wrote:
i need to eval an object from my linux commandline. I understand that clap-st is able to do this, but I can't seem to import it into pharo7, I suppose because of compatability reasons.
Someone sent me this, but I can't seem to replicate the help screen. Is it because I'm on linux and he's on mac?
What exactly are you trying to evaluate? For simple expressions, I use: $ ./pharo Pharo.image eval 20 factorial 2432902008176640000 $ alias p='./pharo Pharo.image eval' $ p Morph allSuperclasses an OrderedCollection(Object ProtoObject) $ echo \'hello\' , \' world\' >hello.st $ p $(< hello.st) 'hello world' $ HTH .. Subbu