Column X

Column X (German: Kolonne X) is a 1929 German silent crime film directed by Reinhold Schünzel and starring Schünzel, Ernst Stahl-Nachbaur and Grete Reinwald. The film attempted to imitate the style of American crime films, switched to a German setting.[1]

Column X
Directed byReinhold Schünzel
Produced byReinhold Schünzel
Written by
Starring
Music byWerner Schmidt-Boelcke
CinematographyWilly Goldberger
Production
company
Reinhold Schünzel Film
Distributed bySüd-Film
Release date
  • 7 August 1929 (1929-08-07)
CountryGermany
Language

Cast

gollark: It's in unsafe™ C, so you could make a mistake and doom all mankind.
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(); } }}```

References

  1. Prawer p. 89

Bibliography

  • Prawer, Siegbert Salomon (2005). Between Two Worlds: The Jewish Presence in German and Austrian Film, 1910–1933. Berghahn Books. ISBN 978-1-84545-074-8.
This article is issued from Wikipedia. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.