Hacker News new | ask | show | jobs
by mjpa86 982 days ago
aren't they implied strings? If "[a b c]" is an array of 3 strings, "a", "b" and "c", then True is a string "True". That's the problem.
1 comments

I must be missing why you think they're implied strings - I don't see that in the spec. What I do see is:

"Strings can also be delimited with a single quote character which allows for a string to be either "abc" or 'abc'."

There's no mention of having a string without a delimeter.

The example below is this:

> array: [a b c]

ohhh I see it now, that looks like a recipe for... issues.