1
2
3
4
5
6
7
let
  n1 = builtins.floor 23.5;
  n2 = builtins.ceil 23.5;
  n3 = builtins.floor 23;
  n4 = builtins.ceil 23;
in
[ n1 n2 n3 n4 ]