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

Ron Teitelbaum ron at usmedrec.com
Mon Jun 20 15:29:50 UTC 2016


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-bounces at lists.squeakfoundation.org [mailto:beginners-bounces at lists.squeakfoundation.org] On Behalf Of Michael Rice
Sent: Monday, June 20, 2016 11:21 AM
To: SqueakList
Subject: [Newbies] How does one create an array of points?

 

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 at 1 2 at 2) => #(1 #@ 1 2 #@ 2)

 

#((Point x: 1 y: 1) (Point x: 2 y: 2)) =>  #(#(#Point #x: 1 #y: 1) #(#Point #x: 2 #y: 2))

 

#(12 'b' $c) => #(12 'b' $c)

 

#(12 'b' $c 1 at 1) => #(12 'b' $c 1 #@ 1)

 

#(12 'b' $c (1 at 1)) => #(12 'b' $c #(1 #@ 1))

 

#(12 'b' $c (Point x: 1 y: 1)) => #(12 'b' $c #(#Point #x: 1 #y: 1))

 

Point x:1 y: 1 =>  1 at 1

 

(Point x:1 y: 1) => 1 at 1

 

#((Point x: 1 y: 1)) => #(#(#Point #x: 1 #y: 1))

 

#(1 at 1) => #(1 #@ 1)

 

-------------- next part --------------
An HTML attachment was scrubbed...
URL: http://lists.squeakfoundation.org/pipermail/beginners/attachments/20160620/a76f603b/attachment.htm


More information about the Beginners mailing list