How long do we have the value printer already? It's time to stop concatenating strings like it's 2005 Change-Id: I3f5074de2439a1ad78af94de877bb141bc9f1d82
10 lines
166 B
Nix
10 lines
166 B
Nix
with import ./lib.nix;
|
|
|
|
let
|
|
n1 = builtins.floor 23.5;
|
|
n2 = builtins.ceil 23.5;
|
|
n3 = builtins.floor 23;
|
|
n4 = builtins.ceil 23;
|
|
in
|
|
map toString [ n1 n2 n3 n4 ]
|