Concrete Jungle (Sway & King Tech album)

Concrete Jungle is the debut album by hip hop duo Sway & King Tech.[2] The album was released on June 11, 1991, by Giant Records. The cover photography was by Victor Hall.

Concrete Jungle
Studio album by
ReleasedJune 11, 1991
Recorded1990
GenreHip hop
Length66:54
LabelGiant/Warner Bros. Records
24419
ProducerKing Tech
Sway & King Tech chronology
Concrete Jungle
(1991)
This or That
(1999)
Professional ratings
Review scores
SourceRating
AllMusic[1]

Track listing

  1. "Intro"
  2. "Concrete Jungle"
  3. "Devastating"
  4. "Baddest Mutha on 2 Turntables [Remix]"
  5. "Rock Steady"
  6. "Let Me See You Move"
  7. "New Dimension"
  8. "Future Source"
  9. "In Control"
  10. "Bum Rush the Sound"
  11. "Time 4 Peace"
  12. "Follow 4 Now [Remix]"
  13. "It's Not Over"
  14. "Same Old Thang"
gollark: That would involve parsing.
gollark: ```python @bot.command(help="Roll simulated dice (basic NdX syntax, N <= 50, X <= 1e6).") async def roll(ctx, dice): match = re.match("([-0-9]*)d([0-9]+)", dice) if not match: raise ValueError("Invalid dice notation") n, x = match.groups() if n == "": n = 1 n, x = int(n), int(x) if n > 50 or x > 1e6: raise ValueError("N or X exceeds limit") rolls = [ random.randint(1, x) for _ in range(n) ] await ctx.send(f"{sum(rolls)} ({' '.join(map(str, sorted(rolls)))})")```
gollark: Nope.
gollark: Fiona's rolldice, while excellently something, could not be used safely on untrusted input.
gollark: No, it uses one (1) regular expression.

References


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