about summary refs log tree commit diff
path: root/third_party/nix/src/tests/lang/eval-okay-substring.nix
blob: 424af00d9b3b9713f05ba8a05aaea45a69071fc7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
with builtins;

let

  s = "foobar";

in

substring 1 2 s
+ "x"
+ substring 0 (stringLength s) s
+ "y"
+ substring 3 100 s
+ "z"
+ substring 2 (sub (stringLength s) 3) s
+ "a"
+ substring 3 0 s
+ "b"
+ substring 3 1 s
+ "c"
+ substring 5 10 "perl"