我正在关注这个示例在 Perl 脚本中使用 YAML 配置文件中的数据的简单示例
vihtorr@w00w /var/www $ cat test.yaml
IPs: [500, 600, 200, 100]
vihtorr@w00w /var/www $ cat yam2.pl
use strict;
use warnings;
use YAML::XS qw(LoadFile);
my $settings = LoadFile('test.yaml');
print "The IPs are ", $settings->{IPs};
我想知道在数组中迭代谁?
当我执行我得到的代码时
perl yam2.pl
The IPs are ARRAY(0x166e5e0)
感谢您帮助菜鸟