⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gv

📁 source of perl for linux application,
💻
字号:
  gv.c AOK     Can't locate package %s for @%s::ISA	@ISA = qw(Fred); joe()     Use of inherited AUTOLOAD for non-method %s::%.*s() is deprecated	sub Other::AUTOLOAD { 1 } sub Other::fred {}	@ISA = qw(Other) ;	fred() ;     $# is no longer supported     $* is no longer supported	$a = ${"#"} ; 	$a = ${"*"} ;  Mandatory Warnings ALL TODO  ------------------    Had to create %s unexpectedly		[gv_fetchpv]    Attempt to free unreferenced glob pointers	[gp_free]    __END__# gv.cuse warnings 'syntax' ;@ISA = qw(Fred); joe()EXPECTCan't locate package Fred for @main::ISA at - line 3.Undefined subroutine &main::joe called at - line 3.######### gv.cno warnings 'syntax' ;@ISA = qw(Fred); joe()EXPECTUndefined subroutine &main::joe called at - line 3.######### gv.csub Other::AUTOLOAD { 1 } sub Other::fred {}@ISA = qw(Other) ;use warnings 'deprecated' ;fred() ;EXPECTUse of inherited AUTOLOAD for non-method main::fred() is deprecated at - line 5.######### gv.c$a = ${"#"};$a = ${"*"};no warnings 'deprecated' ;$a = ${"#"};$a = ${"*"};EXPECT$# is no longer supported at - line 2.$* is no longer supported at - line 3.

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -