Re: [Newbies] Interactive Fiction Framework in Smalltalk Released

2016-06-20 Thread Ben Coman
Hi Eric, Given you've developed on top of Pharo, another good place to announce is pharo-users http://lists.pharo.org/mailman/listinfo/pharo-users_lists.pharo.org Sounds like a cool project. I'll try to find some time to try it out. cheers -ben (p.s. you might add [ANN] to the front of your

Re: [Newbies] Interactive Fiction Framework in Smalltalk Released

2016-06-20 Thread Offray Vladimir Luna Cárdenas
Hi Eric, Some classmates asked me long time ago about projects like this in Smalltalk, so despite of not being in contact with them right now, is nice to see this happening. I have look quickly at the GitHub page. The installation seems kind of difficult compared to the classical way in

[Newbies] Interactive Fiction Framework in Smalltalk Released

2016-06-20 Thread ericvm
Hello, Hopefully this is the right place to write. If not, please tell me which mailing list I should write to. I am working at an Interactive Fiction framework in Smalltalk and it is already in a very usable state and has a working Cloak of Darkness demo. I only tested it on Pharo but I suppose

RE: [Newbies] How does one create an array of points?

2016-06-20 Thread Ron Teitelbaum
From: Michael Rice Sent: Monday, June 20, 2016 11:44 AM Weird, but what do I know. I see that this (a period separating each from the next) also works: {1@1. 2@2. 3@3} => {1@1 . 2@2 . 3@3} [Ron Teitelbaum] Ahh Yes. Even better. Thanks, all. On Mon, Jun 20, 2016

Re: [Newbies] How does one create an array of points?

2016-06-20 Thread Michael Rice
Weird, but what do I know. I see that this (a period separating each from the next) also works: {1@1. 2@2. 3@3} => {1@1 . 2@2 . 3@3} Thanks, all. On Mon, Jun 20, 2016 at 11:29 AM, Ron Teitelbaum wrote: > Hi Michael, > > > > Good question! > > > > {Point x:1 y:1. Point

RE: [Newbies] How does one create an array of points?

2016-06-20 Thread Ron Teitelbaum
Hi Michael, Good question! {Point x:1 y:1. Point x:2 y:2.} It’s not obvious! Notice the periods after the end of each element. All the best, Ron Teitelbaum From: beginners-boun...@lists.squeakfoundation.org [mailto:beginners-boun...@lists.squeakfoundation.org] On Behalf

[Newbies] How does one create an array of points?

2016-06-20 Thread Michael Rice
I've been trying to create an array of points (in Squeak 5) but am failing badly. See below: first part => what I get when I exec "print it" on the first part. Guidance please. #(1@1 2@2) => #(1 #@ 1 2 #@ 2) #((Point x: 1 y: 1) (Point x: 2 y: 2)) => #(#(#Point #x: 1 #y: 1) #(#Point #x: 2 #y: