Pure Soul
Pure Soul was an American R&B girl group who were signed to Interscope Records[1] in the mid 1990s. They are perhaps best known for their hit single We Must Be in Love, the debut single from their self-titled debut album.[2] The "Pure Soul" album (the group's only album) scored three top forty hits on the US Billboard R&B chart. Their music videos were some of the most frequently played videos on BET, VH-1 and The Box at the time of their release. After the singles ran their course and faded from regular rotation, the group mysteriously disappeared from the music scene without any explanation. [3]
Pure Soul | |
---|---|
Origin | Washington, D.C. |
Genres | R&B |
Years active | 1994–1997 |
Labels | Interscope Records |
Past members | Shawn Allen Keitha Shepard Kirstin Hall Heather Perkins |
Discography
Albums
- Pure Soul (1995)
- Singles
Year | Single | Peak positions[4] | ||||
---|---|---|---|---|---|---|
Billboard Hot 100 | Hot R&B/Hip-Hop Singles & Tracks | Hot Dance Music/Maxi-Singles Sales | ||||
1995 | "We Must Be In Love" | 65 | 11 | 22 | ||
1995 | "I Want You Back" [5] | 101 | 26 | 36 | ||
1995 | "Freedom" | 45 | 18 | - | ||
1996 | "Stairway to Heaven" | 79 | 18 | - | ||
"—" denotes a release that did not chart. | ||||||
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?
gollark: You don't have a thing to efficiently deallocate the list.
gollark: Collections which work on a big chunk of memory or something *do* kind of have to use unsafe, linked lists or (some?) trees mostly don't.
References
- https://www.allmusic.com/album/r224051
- https://www.allmusic.com/album/r188653
- Vibe. Vibe Media Group. Dec 1995 – Jan 1996. p. 72. ISSN 1070-4701. Retrieved 2015-08-04.CS1 maint: date format (link)
- https://www.allmusic.com/artist/p142783
- Billboard. Nielsen Business Media, Inc. 1995-11-25. p. 107. ISSN 0006-2510. Retrieved 2015-08-04.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.