Perl Tutorial - 10: Converting Arrays to Strings

preview_player
Показать описание
Thanks for watching!

Рекомендации по теме
Комментарии
Автор

Very clear explanations and it's nice that you keep each video short. Keeps my attention!

nidataylor
Автор

Your tutorials are brilliantly clear. Thank you for the work you have done to prepare and upload these videos.

sewind
Автор

That's funny! I don't have to watch the whole video at all. Just look at the video title, then look in his code. If you understand programming a bit: then that's the only thing you have to do!! xD

jonaskorte
Автор

#!/usr/bin/perl

print "class 10\n";
@instruments = (violin, flute, piano, guitar);

print "the instruments are : @instruments\n";
@my_str = (" start ", @instruments, " end ");
print "the new str is : @my_str\n";

praveenkumarnaidu
welcome to shbcf.ru