As I am teaching I see beginners make lots of annoying mistakes that
perl does not catch
and is hard to explain.
Eg. What does the following code do and why?
Gabor
use strict;
use warnings;
my @argv = ("abcdXezXq");
my @view = split ("X" , @argv );
print @view;