The problem is that I'm working with things I don't understand and I can't
find good documentation. I found some code to connect to an email
server. Something like this:
----------------------
x: [
scheme: 'pop
user: "srad"
pass: "portw"
host: "mail.aneurosmith.com"
]
open x
------------------------
I don't understand this array which looks like a structure. (I still have
hope that I'll find dictionaries in here somewhere...) I actually intend
to process an array of these blocks and generate a report if unable to open
the connection. One question is what's going on above? Is it just a block
of code to define some variables? Instead of trying to search the array
should I just execute it (do?) and then use the variables directly? That's
probably it...
Does this language have key-value pair functionality?
Thanks.
Brad