Re: last

2013-06-23 Thread lee
Shlomi Fish writes: > Hi Lee, > > On Sun, 23 Jun 2013 04:43:58 +0200 > lee wrote: > >> James Alton writes: >> >> > lee, >> > >> > You have a post statement if and then a code block. You can only use one of >> > two forms: >> > >> > print "test" if $color eq "blue"; #no parenthesis required >>

Re: last

2013-06-23 Thread timothy adigun
On Sun, Jun 23, 2013 at 10:37 AM, Shlomi Fish wrote: > Hi Tim, > > On Sun, 23 Jun 2013 10:21:58 +0100 > timothy adigun <2teezp...@gmail.com> wrote: > > > Hi Shlomi, > > > > > > On Sun, Jun 23, 2013 at 10:02 AM, Shlomi Fish >wrote: > > > > > Hi Tim, > > > > > > just a note. > > > > > > On Sun, 23

Re: last

2013-06-23 Thread Shlomi Fish
Hi Tim, On Sun, 23 Jun 2013 10:21:58 +0100 timothy adigun <2teezp...@gmail.com> wrote: > Hi Shlomi, > > > On Sun, Jun 23, 2013 at 10:02 AM, Shlomi Fish wrote: > > > Hi Tim, > > > > just a note. > > > > On Sun, 23 Jun 2013 09:39:48 +0100 > > timothy adigun <2teezp...@gmail.com> wrote: > > > > >

Re: last

2013-06-23 Thread timothy adigun
Hi Shlomi, On Sun, Jun 23, 2013 at 10:02 AM, Shlomi Fish wrote: > Hi Tim, > > just a note. > > On Sun, 23 Jun 2013 09:39:48 +0100 > timothy adigun <2teezp...@gmail.com> wrote: > > > Hi lee, > > Please, check my comment below: > > > > On Sun, Jun 23, 2013 at 3:43 AM, lee wrote: > > > > > James A

Re: last

2013-06-23 Thread Shlomi Fish
Hi Tim, just a note. On Sun, 23 Jun 2013 09:39:48 +0100 timothy adigun <2teezp...@gmail.com> wrote: > Hi lee, > Please, check my comment below: > > On Sun, Jun 23, 2013 at 3:43 AM, lee wrote: > > > James Alton writes: > > > > > lee, > > > > > > You have a post statement if and then a code bl

Re: last

2013-06-23 Thread timothy adigun
Hi , On Sun, Jun 23, 2013 at 9:39 AM, timothy adigun <2teezp...@gmail.com> wrote: > Hi lee, > Please, check my comment below: > > On Sun, Jun 23, 2013 at 3:43 AM, lee wrote: > >> James Alton writes: >> >> > lee, >> > >> > You have a post statement if and then a code block. You can only use >> on

Re: last

2013-06-23 Thread timothy adigun
Hi lee, Please, check my comment below: On Sun, Jun 23, 2013 at 3:43 AM, lee wrote: > James Alton writes: > > > lee, > > > > You have a post statement if and then a code block. You can only use one > of > > two forms: > > > > print "test" if $color eq "blue"; #no parenthesis required > > if($co

Re: last

2013-06-23 Thread Shlomi Fish
Hi Lee, On Sun, 23 Jun 2013 04:43:58 +0200 lee wrote: > James Alton writes: > > > lee, > > > > You have a post statement if and then a code block. You can only use one of > > two forms: > > > > print "test" if $color eq "blue"; #no parenthesis required > > if($color eq "blue"){print "test";} >