nix-helpers: e3a35e1e232adff0dc8bac9274f74d172209287b

     1: { }:
     2: 
     3: with builtins;
     4: with rec {
     5:   go = lst: if lst == [ ] then [ ] else go (tail lst) ++ [ (head lst) ];
     6: };
     7: 
     8: go

Generated by git2html.