make the pass of paremeters to the play_video function bettee
This commit is contained in:
parent
a62b6763b7
commit
5e82137665
1 changed files with 1 additions and 5 deletions
|
@ -133,11 +133,7 @@ sub get_video_data($) {
|
|||
|
||||
sub play_video($) {
|
||||
my $ref = $_[0];
|
||||
my $url = $ref->[0];
|
||||
my $title = $ref->[1];
|
||||
my $description = $ref->[2];
|
||||
my $author = $ref->[3];
|
||||
my $resolution = $ref->[4];
|
||||
my ($url, $title, $description, $author, $resolution) = @$ref;
|
||||
print "Video title: $title\n";
|
||||
print "Description: $description\n\n";
|
||||
print "Video author: $author\n";
|
||||
|
|
Loading…
Add table
Reference in a new issue