1
0
Fork 0
mirror of https://github.com/NixOS/nix-pills synced 2024-09-19 04:00:13 -04:00
nix-pills/pills/17/fix-function.txt
Samuel Leathers 8015a74ea2 port pill #17
2017-08-16 14:25:59 -04:00

3 lines
106 B
Plaintext

# Take a function and evaluate it with its own returned value.
fix = f: let result = f result; in result;