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

📄 demo_cycle.pl

📁 source of perl for linux application,
💻 PL
字号:
package Selfish;sub TIESCALAR {	use Data::Dumper 'Dumper';	print Dumper [ \@_ ];	bless [ @_[1..$#_] ], $_[0];}sub FETCH {	use Data::Dumper 'Dumper';	Dumper [ @{$_[0]} ];}package main;use Attribute::Handlers autotieref => { Selfish => Selfish };my $next : Selfish("me");print "$next\n";my $last : Selfish("you","them","who?");print "$last\n";my $other : Selfish(["you","them","who?"]);print "$other\n";

⌨️ 快捷键说明

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