-
Notifications
You must be signed in to change notification settings - Fork 510
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
[Feature request] Array variables #1889
Comments
I'd like this, but currently just only has string-valued variables, which makes things very simple, since you don't need to know the types of anything, and it's always guaranteed to be a string. We can't use I would like to have a general solution to this though. We already have |
How about considering add dictionary type variables?
|
I opened #2458 to track the possibility of making all values lists of strings. |
In Make, one can do something like
val := ent1 ent2 ent3 ...
, which Make will interpret as an array. Can we have something similar to it that'll also be compatible with variadic recipes and functions?Bonus point for "post setting", eg
The text was updated successfully, but these errors were encountered: