nixir/tests/benchmark/simple.nix
NotAShelf f385eebc99
tests: initial benchmarking setup
Signed-off-by: NotAShelf <raf@notashelf.dev>
Change-Id: If0ed2dd4279abf155a8ddc678ca047736a6a6964
2026-02-23 02:26:37 +03:00

13 lines
134 B
Nix

let
x = 10;
y = 20;
z = x + y;
in {
result = z * 2;
list = [1 2 3 4 5];
attrs = {
a = 1;
b = 2;
c = 3;
};
}