This website requires JavaScript.
Explore
Help
Register
Sign in
mdebray
/
tvl-depot
Watch
1
Star
0
Fork
You've already forked tvl-depot
0
Code
Issues
Pull requests
Projects
Releases
Packages
Wiki
Activity
Actions
e4b82af387
tvl-depot
/
tests
/
lang
/
eval-okay-flatten.nix
9 lines
106 B
Nix
Raw
Normal View
History
Unescape
Escape
* Builtin function `add' to add integers. * Put common test functions in tests/lang/lib.nix.
2006-09-22 17:29:21 +02:00
with
import
./lib.nix
;
* Added a builtin function `isList' to test whether a value is a list. With this primitive, a list-flattening function can be implemented (NIX-55, example is in tests/lang/eval-okay-flatten.nix).
2006-09-22 16:55:19 +02:00
* Builtin function `add' to add integers. * Put common test functions in tests/lang/lib.nix.
2006-09-22 17:29:21 +02:00
let
{
* Added a builtin function `isList' to test whether a value is a list. With this primitive, a list-flattening function can be implemented (NIX-55, example is in tests/lang/eval-okay-flatten.nix).
2006-09-22 16:55:19 +02:00
l
=
[
"
1
"
"
2
"
[
"
3
"
[
"
4
"
]
[
"
5
"
"
6
"
]
]
"
7
"
]
;
body
=
concat
(
flatten
l
)
;
}
Reference in a new issue
Copy permalink