Rock & Roll Submarine

Rock & Roll Submarine is the sixth album by alternative rock band Urge Overkill. It is their first album in sixteen years.

Rock & Roll Submarine
Studio album by
ReleasedMay 10th, 2011
GenreAlternative rock
Length39:17
LabelUniversal Music Australia Pty. Ltd.[1]
ProducerUrge Overkill
Urge Overkill chronology
Exit the Dragon
(1995)
Rock & Roll Submarine
(2011)
Professional ratings
Review scores
SourceRating
Allmusic[2]

Track listing

  1. "Mason/Dixon" -- 2:58
  2. "Rock & Roll Submarine" -- 4:01
  3. "Effigy" -- 3:44
  4. "Poison Flower" -- 2:32
  5. "Little Vice" -- 3:14
  6. "Thought Balloon" -- 4:13
  7. "Quiet Person" -- 3:23
  8. "She's My Ride" -- 3:33
  9. "End of Story" -- 3:24
  10. "The Valiant" -- 3:45
  11. "Niteliner" -- 2:21
  12. "Touched to a Cut" -- 2:09
gollark: It has `Map` now.
gollark: Well, "array".
gollark: JS has an array/map distinction at least...
gollark: Adding a new element:```lualocal x = {1, 2, 3}table.insert(x, 4) -- inserts 4 at the end-- x is now {1, 2, 3, 4}table.insert(x, 2, "a") -- inserts "a" at position 2-- x is now {1, "a", 2, 3, 4}```
gollark: Defining an array-ish table:```lualocal example_table_name = {1, 2, 3, "hi", {}, "mixed types too"}```Iteration:```lualocal x = {"a", "b", "c"}for index, value in ipairs(x) do print(index, value)end-- prints 1 a then 2 b then 3 c```

References

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