Tabernacle, Alabama

Tabernacle, also spelled Tabanacle, is an unincorporated community in Coffee County, Alabama, United States. Tabernacle is located along Alabama State Route 51, 5.7 miles (9.2 km) north-northwest of New Brockton.

Tabernacle, Alabama
Tabernacle, Alabama
Tabernacle, Alabama
Coordinates: 31°27′05″N 85°52′17″W
CountryUnited States
StateAlabama
CountyCoffee
Elevation
436 ft (133 m)
Time zoneUTC-6 (Central (CST))
  Summer (DST)UTC-5 (CDT)
Area code(s)334
GNIS feature ID127619[1]

History

A post office operated under the name Tabernacle from 1890 to 1904.[2]

gollark: Well, it's generic, obviously safer, and appears to involve less weird pointer meddling.
gollark: And 🦀Safe Rust™🦀.
gollark: See, this is much nicer.
gollark: ```rustpub struct List<T> { head: Link<T>,}type Link<T> = Option<Box<Node<T>>>;struct Node<T> { elem: T, next: Link<T>,}impl<T> List<T> { pub fn new() -> Self { List { head: None } } pub fn push(&mut self, elem: T) { let new_node = Box::new(Node { elem: elem, next: self.head.take(), }); self.head = Some(new_node); } pub fn pop(&mut self) -> Option<T> { self.head.take().map(|node| { self.head = node.next; node.elem }) }}impl<T> Drop for List<T> { fn drop(&mut self) { let mut cur_link = self.head.take(); while let Some(mut boxed_node) = cur_link { cur_link = boxed_node.next.take(); } }}```
gollark: ... or at all?

References



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