mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-10 00:08:07 +02:00
7 lines
61 B
Nix
7 lines
61 B
Nix
|
let
|
||
|
a = 5;
|
||
|
b = 1;
|
||
|
|
||
|
add = a: b: a + b;
|
||
|
in add a $ a $ b
|