Use Chart, that is easy. http://search.cpan.org/dist/Chart/
Chart is depend on GD. http://search.cpan.org/dist/GD/
GD is depend on gblib. http://www.libgd.org/Main_Page
You could use package manager to install gblib or download the source
and build it.
- 原邮件 -
从: Paul
日期: 星期日, 二月 22
try this,
@b[0..9] = @a[0..9];
- 原邮件 -
从: itshardtogetone
日期: 星期四, 一月 29日, 2009 下午2:39
主题: how to copy elements into the next array
> Hi,
> How do I copy the first 10 elements of @a into @b?
>
> The method that I use is long :-
> my @a = 1..20;
> my @b = ();
>
> my $ctr = 0;
> foreac