#Basic -> ARexx
I'm trying to translate a Basic program to Arexx and I wanted to doublecheck
and see if I am using the right vocabulary…
I'm writing a series of bytes to the SER: port, so I start by opening the
port with
x = OPEN(test,'SER:','Write')
Now the basic line reads "Print #1, CHR$(255)"
I've assumed that the ARexx equivalent is:
WRITECH(d2c(255))
Anyone see anything I'm doing wrong?
Thanks – Joe