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

📄 rx_objcall.t

📁 source of perl for linux application,
💻 T
字号:
BEGIN {    chdir 't' if -d 't/lib';    @INC = '../lib' if -d 'lib';    require Config; import Config;    if (-d 'lib' and $Config{'extensions'} !~ /\bOS2(::|\/)REXX\b/) {	print "1..0\n";	exit 0;    }}use OS2::REXX;## DLL#$rxu = load OS2::REXX "rxu"   or print "1..0 # skipped: cannot find RXU.DLL\n" and exit;print "1..5\n", "ok 1\n";## function#@pid = $rxu->RxProcId();@pid == 1 ? print "ok 2\n" : print "not ok 2\n";@res = split " ", $pid[0];print "ok 3\n" if $res[0] == $$;@pid = $rxu->RxProcId();@res = split " ", $pid[0];print "ok 4\n" if $res[0] == $$;print "# @pid\n";eval { $rxu->nixda(); };my $err = $@;if ($err) {  $err =~ s/\n/\n#\t/g;  print "# \$\@ = '$err'\n";}print "ok 5\n" if $@ =~ /^Can't find symbol `nixda\'/;

⌨️ 快捷键说明

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