- or download this
if ($genres[0] eq 'Science Fiction' || 'Sci-Fi' || 'Fantasy') {
$genre = 'Sci-Fi & Fantasy';
...
}else {
$genre = $genres[0];
}
- or download this
print "Genres: $genres[0]\n";
print "Genre: $genre\n";
- or download this
Genres: Action
Genre: Sci-Fi & Fantasy