зеркало из
https://github.com/iharh/notes.git
synced 2025-11-01 22:26:09 +02:00
12 строки
309 B
Plaintext
12 строки
309 B
Plaintext
If expressions
|
|
|
|
These are expressions, not statements.
|
|
|
|
nix-repl> a = 3
|
|
nix-repl> b = 4
|
|
nix-repl> if a > b then "yes" else "no"
|
|
"no"
|
|
|
|
You can't have only the then branch, you must specify also the else branch, because an expression must have a value in all cases.
|
|
|