Re: [Newbies] hi

2014-10-31 Thread Casey Ransberger
Hi Hans. Hello world:) On Oct 30, 2014, at 10:51 AM, Hans Schueren werb...@hans-schueren.de wrote: hi fellows. Let x = 100 ___ Beginners mailing list Beginners@lists.squeakfoundation.org

Re: [Newbies] hi

2014-10-31 Thread Herbert König
Just think of your reply. He won't bother to read the mailing list. :-)) Cheers Herbert Am 31.10.2014 um 11:38 schrieb Casey Ransberger: Hi Hans. Hello world:) On Oct 30, 2014, at 10:51 AM, Hans Schueren werb...@hans-schueren.de wrote: hi fellows. Let x = 100

RE: [Newbies] hi

2014-10-31 Thread Ron Teitelbaum
From: Herbert König Just think of your reply. He won't bother to read the mailing list. :-)) I thought the same thing but figured, this is a friendly group that encourages people to write in with newbie questions. Someone else might read it and say, Hey cool group. :) Ron Cheers

Re: [Newbies] hi

2014-10-31 Thread Casey Ransberger
In some places, weirdly enough, it's considered rude not to say hello when passing through. At first I thought I'd ignore the message. Then I thought about translating it (as someone else has done [|x| x:=100]) and then I thought about the implications of all that and just decided to say

Re: [Newbies] hi

2014-10-31 Thread Casey Ransberger
So uh... what kinda stuff are you into. Do you like parsing things? I enjoy parsing. Among other things. And some friends have put me onto some fantastic tea. Hi? Are you a robot? It's okay if you are, I definitely won't judge you for it. Your pal, Casey On Oct 30, 2014, at 10:51 AM, Hans

RE: [Newbies] hi

2014-10-31 Thread Ron Teitelbaum
basic questions about Squeak. Subject: Re: [Newbies] hi So uh... what kinda stuff are you into. Do you like parsing things? I enjoy parsing. Among other things. And some friends have put me onto some fantastic tea. Hi? Are you a robot? It's okay if you are, I definitely won't judge you

RE: [Newbies] hi

2014-10-30 Thread Ron Teitelbaum
Hi Hans, |x| x := 100. |x| defines a temp x. | x y | defines both x and y as temps. The assignment operator is := If you use = or == you are asking for a comparison of x and 100. All the best, Ron Teitelbaum -Original Message- From: beginners-boun...@lists.squeakfoundation.org

Re: [Newbies] hi

2014-10-30 Thread Alan Lovejoy
Hans, Here's a complete program which will print the numbers from 1 to 10 on the console (each on its own line): | index | index := 0. [index 10] whileTrue: [index := index + 1. Transcript show: index printString; cr] On Thu, Oct 30, 2014 at 4:58

Re: [Newbies] hi ! from France ! ;-) where can i ...

2006-06-05 Thread limousin2
Hi José, find à list diff in french about squeak ? http://community.ofset.org/wiki/La_liste_francophone_Squeak-fr Guy Veyssiere ___ Beginners mailing list Beginners@lists.squeakfoundation.org