~ubuntu-branches/ubuntu/karmic/padre/karmic

« back to all changes in this revision

Viewing changes to t/files/beginner/split1.pl

  • Committer: Bazaar Package Importer
  • Author(s): Damyan Ivanov
  • Date: 2009-02-18 15:55:00 UTC
  • Revision ID: james.westby@ubuntu.com-20090218155500-verj6agdgojx5ihm
Tags: upstream-0.27.ds1
ImportĀ upstreamĀ versionĀ 0.27.ds1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!perl
 
2
use strict;
 
3
use warnings;
 
4
 
 
5
my @arg = ("abcdXezXq");
 
6
my @view = split "X" , @arg ;
 
7
print @view;
 
8
 
 
9
# problem: @arg is in scalar context here so it returns the number of elements