|
Namazu for hns による簡易全文検索 詳しくは 詳細指定/ヘルプを参照して下さい |
|||||||||||||||||||||||||||||||||||||||||||||||||||
2014年03月17日(月) 旧暦 [n年日記] [更新:"2014/03/17 19:17:15"]#1 [Perl] Pass Hash pointer (reference) to subroutine
きょうはこれだけのことがなかなか出来なかった。
#!/usr/pkg/bin/perl use strict; # Pass Hash pointer (reference) to subroutine sub print_hash($){ my ($hashref) = shift; foreach my $k (keys $hashref) { print $k .' -> '. $hashref ->{$k},"\n"; } } my (%HASH) = qw(a aa b bb); print_hash(\%HASH); exit; __END__ ( つっこみ )
|
最近の日記 2025年02月13日 ・dvipdfmx ICC profile format spec. version 4.3.0 2025年01月29日 ・ham/wsjtx 2025年01月27日 ・wip/wsjtx 5.4.2 2025年01月25日 ・ham/wsjtx 2025年01月15日 ・今更 advent calendar | ||