I have the following statement in d3 pick:
OPEN '','AT-MASTER' TO AT.MASTER ELSE RETURN
The examples I have seen of the open statement either completely omit the comma and the thing before it, or they have something inside the thing before the comma, as follows, where dict is inside the single quotes before the comma.
open 'dict','invoice' to invoice.dict then
print 'ok'
end else
stop 201,'dict invoice cannot be opened'
end
What does the empty string made with single quotes that appears directly after the OPEN mean?