參數會存在@ARGV中
所以
$./run.pl hello
print "@ARGV[0]"; // hello
2. funciton傳參數:function的參數會在 @_ 中
所以
sub add_number
{
return @_[0] + @_[1];
}
print add_number(100, 150); //250
3. 開檔:
讀檔:
open($fp, "<", "filename");
寫檔:
open($fp, ">", "filename");
關檔:
close ($fp);