11 lines
262 B
Nix
11 lines
262 B
Nix
# White space is used to delimit lexical tokens, where required. It is otherwise insignificant.
|
|
# Line breaks, indentation, and additional spaces are for readers' convenience.
|
|
# the following are equivalent
|
|
|
|
#let
|
|
# x = 1;
|
|
# y = 2;
|
|
# in x + y
|
|
|
|
let a=1;b=2;in a+b
|