Skip to content
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

Closed
WayneSherman opened this issue Jan 31, 2024 · 5 comments

Comments

@WayneSherman
Copy link

"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"?

@tazjin
Copy link
Owner

tazjin commented Feb 1, 2024

let absolutely is an expression that returns a value! A let consists of the binding declarations, and the body (after in, when using modern Nix). Evaluating this returns a value (the body with the bindings in place). This is referentially transparent and there is nothing sequential going on, i.e. there are no statements.

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.

@WayneSherman
Copy link
Author

WayneSherman commented Feb 1, 2024

A suggestion to clarify this statement:

Everything in Nix is an expression meaning that every directive returns some kind of data.

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":
"unit of code"
"code segment"

@tazjin
Copy link
Owner

tazjin commented Feb 2, 2024

How about a slightly simpler

Any valid piece of Nix code is [...]

?

I think that "well-formed" != "syntactically correct", as you can write syntactically correct code that fails to evaluate (e.g. builtins.add {} {})

@WayneSherman
Copy link
Author

How about a slightly simpler

Any valid piece of Nix code is [...]

Yes I think that is an improvement.

@tazjin
Copy link
Owner

tazjin commented Feb 2, 2024

Making the change here: https://cl.tvl.fyi/c/depot/+/10737

tvlbot pushed a commit that referenced this issue Feb 2, 2024
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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants