In the new version that was just sent out when I tried to run a
program I wrote I got an error on pong.
Line 831 reads:
} elsif ($cmd eq 'name') {
And I'm guessing it should read:
} elsif ($cmd eq 'name' || $cmd eq 'pong') {
Am I right or wrong?
qurgh