Howdy.
If I want to write a literal definition of a function that has a sequential set of integers as its domain, I can of course use the tuple syntax `<<"a", "b", "c">>`, but how might I go about doing this with anything but an integer index, e.g. a string? For example, what if I wanted to have something more or less akin to this in _javascript_:
var myObj = {
"foo":"bar",
"baz": "blah"
}
myObj["foo"] // "bar".