Hooper, Georgia

Hooper is an unincorporated community in Haralson County, in the U.S. state of Georgia.[1]

History

A post office called Hooper was established in 1881, and remained in operation until 1903.[2] The community was named after Joseph M. Hooper, proprietor of several local mills.[3]

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;}```

References

  1. U.S. Geological Survey Geographic Names Information System: Hooper, Georgia
  2. "Post Offices". Jim Forte Postal History. Retrieved 4 January 2019.
  3. Krakow, Kenneth K. (1975). Georgia Place-Names: Their History and Origins (PDF). Macon, GA: Winship Press. p. 112. ISBN 0-915430-00-2.

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