Re: [Ql-Users] Yesterday (Nov 1st, last year)

2010-11-03 Thread Anton Preinsack
Am 02.11.2010 um 16:19 schrieb Urs Koenig (QL): > Last year on Nov 1st the two days show "QL & Mac are 25" ended. In the > welcome session the day before I was a bit to optimistic! See: > http://www.youtube.com/watch?v=s58U-gdvhh4 > > This October I released six more videos on YouTube; Two coveri

Re: [Ql-Users] A small machine code program...

2010-11-03 Thread Rich Mellor
On 02/11/2010 18:22, Tony Firshman wrote: Rich Mellor wrote, on 03/11/2010 17:49: On 02/11/2010 17:34, Tony Firshman wrote: 10 FOR j = 1 TO 100 15 sp$ = " "; 20 PRINT j; 20 if j/3 == int(j/3) 25 sp$=""; 30 PRINT " FIZZ"; 40 END IF 30 IF j/5 == int(j/5) 40 PRINT sp$&"BUZZ"; 50 END IF 60 PRINT 7

Re: [Ql-Users] A small machine code program...

2010-11-03 Thread Tony Firshman
Rich Mellor wrote, on 03/11/2010 17:49: On 02/11/2010 17:34, Tony Firshman wrote: 10 FOR j = 1 TO 100 15 sp$ = " "; 20 PRINT j; 20 if j/3 == int(j/3) 25 sp$=""; 30 PRINT " FIZZ"; 40 END IF 30 IF j/5 == int(j/5) 40 PRINT sp$&"BUZZ"; 50 END IF 60 PRINT 70 END FOR Hi Tony, Yes, you are going t

Re: [Ql-Users] A small machine code program...

2010-11-03 Thread Rich Mellor
On 02/11/2010 17:34, Tony Firshman wrote: 10 FOR j = 1 TO 100 15 sp$ = " "; 20 PRINT j; 20 if j/3 == int(j/3) 25 sp$=""; 30 PRINT " FIZZ"; 40 END IF 30 IF j/5 == int(j/5) 40 PRINT sp$&"BUZZ"; 50 END IF 60 PRINT 70 END FOR Hi Tony, Yes, you are going to confuse SB programmers with that one -

Re: [Ql-Users] A small machine code program...

2010-11-03 Thread Tony Firshman
Rich Mellor wrote, on 02/11/2010 19:53: I was just reading that 99/100 job applicants for programming jobs apparently cannot write a short "fizzbuzz" program when given 10 minutes to do so in an interview. The rules are simple - write out the values 1 to 100 on screen If the value is divisble

Re: [Ql-Users] A small machine code program...

2010-11-03 Thread gdgqler
On 2 Nov 2010, at 19:53, Rich Mellor wrote: > I was just reading that 99/100 job applicants for programming jobs apparently > cannot write a short "fizzbuzz" program when given 10 minutes to do so in an > interview. > > The rules are simple - > write out the values 1 to 100 on screen > If the

Re: [Ql-Users] A small machine code program...

2010-11-03 Thread Tony Firshman
Rich Mellor wrote, on 02/11/2010 19:53: I was just reading that 99/100 job applicants for programming jobs apparently cannot write a short "fizzbuzz" program when given 10 minutes to do so in an interview. The rules are simple - write out the values 1 to 100 on screen If the value is divisble