test5_t

来自「Altera recommends the following system c」· 代码 · 共 26 行

TXT
26
字号
# Test that dprof doesn't break#    &bar;  used as &bar(@_);sub foo1 {	print "in foo1(@_)\n";	bar(@_);}sub foo2 {	print "in foo2(@_)\n";	&bar;}sub bar {	print "in bar(@_)\n";	if( @_ > 0 ){		&yeppers;	}}sub yeppers {	print "rest easy\n";}&foo1( A );&foo2( B );

⌨️ 快捷键说明

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