Brendon Bermingham

Brendon Bermingham (26 May 1914 – 10 December 1975) was an Australian rules footballer who played with St Kilda in the Victorian Football League (VFL).[1]

Brendon Bermingham
Personal information
Full name Brendon Bermingham
Date of birth (1914-05-26)26 May 1914
Date of death 10 December 1975(1975-12-10) (aged 61)
Original team(s) Claremont (WAFL) / Mines Rovers (GFL)
Height 187 cm (6 ft 2 in)
Weight 91 kg (201 lb)
Playing career1
Years Club Games (Goals)
1944 St Kilda 8 (1)
1 Playing statistics correct to the end of 1944.
Sources: AFL Tables, AustralianFootball.com

Notes

  1. Holmesby, Russell; Main, Jim (2014). The Encyclopedia of AFL Footballers: every AFL/VFL player since 1897 (10th ed.). Seaford, Victoria: BAS Publishing. p. 63. ISBN 978-1-921496-32-5.
gollark: Fibonaccae WILL be computed.
gollark: ```ruststruct Fib1 { cache: Vec<u128>}impl Iterator for Fib1 { type Item = u128; fn next(&mut self) -> Option<Self::Item> { let n = self.cache.len(); let next = self.cache[n - 1].wrapping_add(self.cache[n - 2]); self.cache.push(next); Some(next) }}fn fib1() -> Fib1 { Fib1 { cache: vec![0, 1] } }fn main() { for n in fib1() { print!("{} ", n); }}```
gollark: I prefer it this way.
gollark: Idea: wrapping_add.
gollark: Unlike LyricLy's bad thing, which timed out.


This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.