Delisted # 8: Martin Gleeson - Not offered a contract, finishes his Essendon career on 97 AFL games

Remove this Banner Ad

I guess you could say YOU REALLY DROPPED THE BALL THERE

eth-dog-s-dropped-catch-o.gif



(seriously, this is the second result when you google "dropped catch gif". Well done, The Hangar)
I thought I'd never see that again :(.
 

Log in to remove this ad.

Interesting call....Gleeson is a natural rebounder; leaves his man to run at the footy, breaks a line and launches counter-attacks.Whether he's more Wanganeen or Quinn will depend on one thing - judgement.

If he already understands or eventually masters the art of when to go or not then he's going to be very good.

Ashby takes less risks but with risk comes reward....time will tell, both look promising as you say.
I also see similarities to Wanga, not as good by any means but just to be able to compare the 2 is delightful...Make us proud MArty..
 
Is that you? What's with the run up? No wonder you push for the spazzes all the time.
No, but on my senior debut I dropped a catch that kinda cost my team the game... Off the captain.
 
Hello My Name is Martin Gleeson, I Am A Cyborg

(Highlight the above text, right click>speech>start speaking :D)
 

(Log in to remove this ad.)

Hello My Name is Martin Gleeson, I Am A Cyborg

(Highlight the above text, right click>speech>start speaking :D)

By that you actually mean:

public class martinGleeson
{

public static void main(String[] args) {

System.out.println("Hello World! My name is Martin Gleeson, I am a Cyborg");
}
{
 
Found this on the interwebs...

Code:
package Cyborg;

use strict;
use warnings;
use Carp;

sub new {
    my $class = shift;
    my $self  = { @_ };
    croak "bad arguments" unless defined $self->{firstname} and defined $self->{lastname};
    return bless $self, $class;
}

sub detection {
    my $self = shift;
    if ($self->{lastname} =~ /Gleeson/i) {
       return "$self->{firstname} $self->{lastname} is a cyborg";
    }
    elsif ($self->{lastname} =~ /Gibbs/i) {
       return "$self->{firstname} $self->{lastname} is a squib";
    } else {
       return "$self->{firstname} $self->{lastname} is a human";
    }
}

package main;

my $cyborg1 = Cyborg->new(firstname => "$ARGV[0]", lastname => "$ARGV[1]");
print $cyborg1->detection, "\n";

Here are some tests.

>perl Cyborg.pl Martin Gleeson
Martin Gleeson is a cyborg
>perl Cyborg.pl Bryce Gibbs
Bryce Gibbs is a squib
>perl Cyborg.pl Ricky Dyson
Ricky Dyson is a human
 

Remove this Banner Ad

Back
Top