Skip to content

Instantly share code, notes, and snippets.

@ryantm
Created May 5, 2019 09:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ryantm/ceff2db5f3d5f7bc14c81b442c749471 to your computer and use it in GitHub Desktop.
Save ryantm/ceff2db5f3d5f7bc14c81b442c749471 to your computer and use it in GitHub Desktop.
/nix/store/nndz8mkvzph1vb787jl4siiynmp89wvz-guile-lib-0.2.6.1
├── lib
│   ├── guile-lib
│   │   └── guile
│   │   └── 2.0
│   │   └── site-ccache
│   │   ├── apicheck.go
│   │   ├── compat
│   │   │   └── guile-2.go
│   │   ├── config
│   │   │   └── load.go
│   │   ├── container
│   │   │   ├── async-queue.go
│   │   │   ├── delay-tree.go
│   │   │   └── nodal-tree.go
│   │   ├── debugging
│   │   │   ├── assert.go
│   │   │   └── time.go
│   │   ├── graph
│   │   │   └── topological-sort.go
│   │   ├── htmlprag.go
│   │   ├── io
│   │   │   └── string.go
│   │   ├── logging
│   │   │   ├── logger.go
│   │   │   ├── port-log.go
│   │   │   └── rotating-log.go
│   │   ├── match-bind.go
│   │   ├── math
│   │   │   ├── minima.go
│   │   │   └── primes.go
│   │   ├── md5.go
│   │   ├── os
│   │   │   └── process.go
│   │   ├── scheme
│   │   │   ├── documentation.go
│   │   │   └── kwargs.go
│   │   ├── search
│   │   │   └── basic.go
│   │   ├── string
│   │   │   ├── completion.go
│   │   │   ├── soundex.go
│   │   │   ├── transform.go
│   │   │   └── wrap.go
│   │   ├── term
│   │   │   └── ansi-color.go
│   │   ├── texinfo
│   │   │   └── nodal-tree.go
│   │   ├── text
│   │   │   └── parse-lalr.go
│   │   └── unit-test.go
│   └── pkgconfig
│   └── guile-lib-1.0.pc
└── share
├── guile-lib
│   ├── apicheck.scm
│   ├── compat
│   │   └── guile-2.scm
│   ├── config
│   │   └── load.scm
│   ├── container
│   │   ├── async-queue.scm
│   │   ├── delay-tree.scm
│   │   └── nodal-tree.scm
│   ├── debugging
│   │   ├── assert.scm
│   │   └── time.scm
│   ├── graph
│   │   └── topological-sort.scm
│   ├── htmlprag.scm
│   ├── io
│   │   └── string.scm
│   ├── logging
│   │   ├── logger.scm
│   │   ├── port-log.scm
│   │   └── rotating-log.scm
│   ├── match-bind.scm
│   ├── math
│   │   ├── minima.scm
│   │   └── primes.scm
│   ├── md5.scm
│   ├── os
│   │   └── process.scm
│   ├── scheme
│   │   ├── documentation.scm
│   │   └── kwargs.scm
│   ├── search
│   │   └── basic.scm
│   ├── string
│   │   ├── completion.scm
│   │   ├── soundex.scm
│   │   ├── transform.scm
│   │   └── wrap.scm
│   ├── term
│   │   └── ansi-color.scm
│   ├── texinfo
│   │   └── nodal-tree.scm
│   ├── text
│   │   └── parse-lalr.scm
│   └── unit-test.scm
└── info
├── dir
└── guile-library.info
39 directories, 63 files
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment