Skip to content

Instantly share code, notes, and snippets.

@kennethho
Forked from evanzillians/draft.txt
Last active August 29, 2015 13:56
Show Gist options
  • Select an option

  • Save kennethho/9224821 to your computer and use it in GitHub Desktop.

Select an option

Save kennethho/9224821 to your computer and use it in GitHub Desktop.
thor
├── contrib
│   ├── bar
│   └── foo
├── include
│   └── thor
│   ├── lib-1
│    │   └── hdr-1.h // names in thor::lib-1
│   └── lib-2
│   └── hdr-2.h // names in thor::lib-2
├── src
│   ├── lib-1
│   │   ├── src
│   │   │   └── src-1.cpp
│   │   └── test
│   │   └── test.cpp
│   ├── lib-2
│   │   ├── src
│   │   │   └── src-2.cpp
│   │   └── test
│   │   └── test.cpp
│   └── bin-3
│   ├── src
│   │   └── src-3.cpp
│   └── test
│   └── test.cpp
└── test
└── complicated
└── test.cpp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment