summaryrefslogtreecommitdiff
path: root/ext/Amiga-Exec/__examples/simplecommand.pl
blob: 85d447bb8abdb7603629b638324e7b0f2a8d9899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!perl

use strict;
use warnings;

use Amiga::ARexx qw(DoRexx);

my ($result,$rc,$rc2) = DoRexx("WORKBENCH","HELP");

print $result , "\n" , $rc, "\n", $rc2 , "\n";

($result,$rc,$rc2) = DoRexx("WORKBENCH","NOHELP");

print $result , "\n" , $rc, "\n", $rc2 , "\n";