Mademoiselle Ninette

"Mademoiselle Ninette" is a song written and produced by Herbert Hildebrandt-Winhauer and originally performed by Soulful Dynamics. It was released in 1970,[1] and became a number-one hit in Germany, Austria and Switzerland that year and was among the bestsellers for 30 weeks. More than half million copies were sold of the single.[2] a cover by Michael Holm reached number two in South Africa.[3]

Cover versions

Several other bands and singers recorded the song, among them:

  • The Walkers (in Dutch)
  • Michael Holm (1970 in English and in German - South Africa #2)
  • James Last (1970)
  • Hajo (1970, in German)
  • Metronom (in Czech)
  • Jigsaw (1972 - Australia #18)
  • De Marlets (1988)
  • Rondo Classico (1995)
  • Sam Gooris (1996)
  • Matthias Lens (2013)
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

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