Help for this page

Select Code to Download


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