The Shuffles

The Shuffles were a Dutch pop band formed in Rosmalen, North Brabant. The group, fronted by the late Albert West, were active for ten years from 1963 until 1973.[1]

The Shuffles in February 1970.

Discography

Singles

  • 1969 "Cha-La-La, I Need You"
  • 1970 "Believe Now in Tomorrow"
  • 1970 "Bitter Tears"
  • 1970 "Teardrop on Teardrop"
  • 1970 "The Way the Music Goes"
  • 1970 "Without You"
  • 1971 "Glory, Glory"
  • 1971 "I Give You My Love"
gollark: And make it increment `i` itself.
gollark: You could also make it do `while #primes < tuning do`.
gollark: The `ipairs` iterator gives us `key, value` for each item of the table (in order). The key is unnecessary here, so it's just bound to `_`, the convention I've seen a lot for variables you're discarding.
gollark: As you can see, you don't actually need to explicitly compute the length anywhere.
gollark: Here's how I would do it:```lualocal function divisible_by_any(n, factors) for _, factor in ipairs(factors) do if n % factor == 0 then return true end end return falseendlocal primes = { 2, 3 }for i = 2, 100 do if not divisible_by_any(i, primes) then table.insert(primes, i) endendfor _, prime in ipairs(primes) do print(prime) end```

References

  1. "Gelderse artiesten verdrietig om dood Albert West". Omroep Gelderland (in Dutch). 4 June 2015. Retrieved 8 June 2015.


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