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.
|
- # Check whether a list of parties is in the parties table
-
- require_relative '../models'
-
- ARGF.each do |line|
- line.strip!
- print line
- if Party.find(line)
- puts " found"
- else
- puts " not found"
- end
- end
|