mirror of
https://github.com/NixOS/nix.git
synced 2024-11-22 14:52:55 +00:00
7 lines
123 B
Nix
7 lines
123 B
Nix
with import ./lib.nix;
|
|
|
|
let xs = range 10 40; in
|
|
|
|
[ (builtins.elem 23 xs) (builtins.elem 42 xs) (builtins.elemAt xs 20) ]
|
|
|