Don Williams (footballer, born 1939)

Don Williams (born 16 August 1939) is a former Australian rules footballer who played with Richmond in the Victorian Football League (VFL).[1]

Don Williams
Personal information
Full name Don Williams
Date of birth (1939-08-16)16 August 1939
Original team(s) Essex Heights
Height 184 cm (6 ft 0 in)
Weight 80 kg (176 lb)
Playing career1
Years Club Games (Goals)
1959–60 Richmond 7 (0)
1 Playing statistics correct to the end of 1960.
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. 953. ISBN 978-1-921496-32-5.
gollark: ```javascriptconst printNumber = n => { switch(n) { case 0: return "zero"; //break; case 1: return "one"; //break; case 2: return "two"; //break; case 3: return "three"; //break; default: return "many"; }}```That's much longer, and uglier, especially with the breaks (not needed in this example, but generally will be).
gollark: ```fsharplet printNumber n = match n with | 0 -> "zero" | 1 -> "one" | 2 -> "two" | 3 -> "three" | _ -> "many"```
gollark: I could provide a more complicated example, but discord is bad for that.
gollark: See? It's ugly! Mutable variables; that break nonsense; the curly brackets.
gollark: i.e.```fsharplet potato = 5let isFive = match potato with | 5 -> true | _ -> false```is nicer than the equivalent nonsense of```javascriptconst potato = 5;let isFive;switch (potato) {case 5: isFive = true; break:default: isFive = false;}```
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.