-
Notifications
You must be signed in to change notification settings - Fork 24
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
"Everything in Nix is an expression, meaning that every directive returns some kind of data." #19
Comments
A directive here is meant to be any well-formed snippet of Nix code. I think you're confusing the lexical level (which tokens exist) with the semantic level (what does the parser construct out of the tokens), and I'm not sure how to make that clearer. |
A suggestion to clarify this statement:
Every well-formed (i.e. syntactically correct) block of code in Nix is an expression that returns a value. ("Well-formed" and "Syntactically correct" mean the block of code is syntactically complete and the structure, syntax, and order of elements adhere to the defined rules of the language.) Alternatives to "block of code": |
How about a slightly simpler
? I think that "well-formed" != "syntactically correct", as you can write syntactically correct code that fails to evaluate (e.g. |
Yes I think that is an improvement. |
Making the change here: https://cl.tvl.fyi/c/depot/+/10737 |
See #19 Change-Id: Ie78eb00192b595ffa59040a4f6d311023621939a Reviewed-on: https://cl.tvl.fyi/c/depot/+/10737 Reviewed-by: flokli <flokli@flokli.de> Tested-by: BuildkiteCI Autosubmit: tazjin <tazjin@tvl.su>
"Everything in Nix is an expression"
There are parts of the language that are not expressions. For example, "Let" could be described as a "keyword" since it is a predefined reserved word in the Nix language. Although "Let" is "in Nix", it isn't an expression by itself. There are syntactical elements which are also part of Nix, but they are not expressions. For example "[" is a valid part of the Nix language, but not an expression by itself. In the Nix repl, if I type "Let" (and then enter) or "[" (and then enter) I get error messages.
"meaning that every directive returns some kind of data."
What is a "directive"?
The text was updated successfully, but these errors were encountered: