-
Notifications
You must be signed in to change notification settings - Fork 476
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Make all values lists of strings, instead of strings #2458
Comments
I personally prefer the terminology list, but it doesn't really matter.
Associative arrays are useful, but they can be emulated with a list of 2-lists representing keys and values. On the other hand, I don't think that treating a list as an implicit associative array with natural number keys, Javascript-style, is necessarily a problem. If there's any mechanism for indexing into a list with a natural number, then that has the possibility of failing even if there's no notion of an associative array. |
hmmm... I still think clear separation between list and string is the way to go. Essentially introducing an additional type: list, which maintain the static-typing of Just. I think it's more intuitive than ditching singular strings. |
Adding two types, lists and strings, would mean that just would either become dynamically typed, and have type errors when you tried to use a list where a string was necessary, or vice versa; or we would have to add a static type system, which would be a huge undertaking. |
In a way, though, you still be creating two types since a list is a composite type; it needs elements to make sense (or not). As for dynamic typing, like I mention below, singular strings will convert to singular lists. This conversion can happen somewhere between parsing and evaluation. Besides, isn't Just an interpreter of commands, dynamic typing shouldn't come as a shock to it. Re-reading Drew response to another hacker's experiment on whitespaces in shell here, he mentions that the key ingredient is adding list of strings (alongside strings). I think for Just, we should treat strings like a list with one element. Citing your example: PS: I haven't looked at Just source in a long while, maybe out of touch with this reality. Lemme know |
Just values are all strings. This is convenient, because it means that Just is effectively statically typed. It is impossible to provoke a type error.
However, it means that many desirable things are impossible:
*arg
. Currentlyarg
is a space-separated string, but users may want to do something with each entry in the list, and re-splitting is error-prone.true/false
, but these are also valid strings.We could add a type system, see #528. But another interesting option would be to change our single type from strings to lists of strings. This is done in rc, Plan 9s shell.
This seems crazy! Everything is a list? However, consider this: The shell, and Just, benefit from enormous simplicity because everything is a string. No type errors! No type system! We could abandon this, and add a type system, but another path is to make the one type we do have more powerful.
All current values, instead of being strings, would be lists containing single strings. When used in interpolations, or as arguments to
/
and+
, an list of a single string would behave in exactly the same way as a string does now, so this would be a backwards compatible change.This would allow the following nice things:
false
value would be the empty list, and any non-empty list is true.['']
is true, so it would be possible to provide the empty string as a value, and still allow a fallback withvalue || fallback
.make
has a ton of functions which treat a string as a space-separated list. These are useful, but error prone, so I haven't wanted to add these. We could add useful, non-error-prone versions of these.+
could append an extension to every element of a list:["hello", "goodbye"] + '.c'
->["hello.c", "goodbye".c]
/
:["/", "/usr"] / "bin"
->["/bin", "/usr/bin"]
false
could be represented by the empty list, and all other values would be interpreted as true. This['']
would be true, allowing the user to provide the empty string for a value.for
which evaluates to a list:for a in var { a + ".c" }
The main downside, I think, is that it is very unfamiliar and counter-intuitive. Users are used to shell-like languages, including
make
andjust
, where everything is a string. Everything is a list of strings is very weird.rc
implements and makes a compelling case for lists of lists being the single type, but it's unfamiliar and mostly forgotten.Open questions:
The text was updated successfully, but these errors were encountered: