Election results in the London Borough of Sutton.
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 

14 satır
219 B

  1. # Check whether a list of parties is in the parties table
  2. require_relative '../models'
  3. ARGF.each do |line|
  4. line.strip!
  5. print line
  6. if Party.find(line)
  7. puts " found"
  8. else
  9. puts " not found"
  10. end
  11. end