Re: [Pharo-users] As a SmallTalk youngster: A few questions...

2019-08-17 Thread Jupiter Jones
Also if you add #FOO to UserGlobals you should be able to reference it like: FOO add: user ie. without the symbol hash (#) > On 17 Aug 2019, at 11:28 pm, ian wrote: > > --- > #FOO add: user > ---

Re: [Pharo-users] As a SmallTalk youngster: A few questions...

2019-08-17 Thread Jupiter Jones
> The difficulty I am having is that when I want to query the UserManager db > with something like: > > --- > RcIdentityBag(users) select: [ :each | each name := 'somename' ] > — Not sure if it’s just a typo, but it appears you’re trying to use assignment ( := ) rather than comparison ( = ) so