Expands glob groups like `foo{bar,baz}` -> `["foobar", "foobaz"]`
Does not (currently) support wildcards like `*.txt`,
because those are context-sensitive.
```rust
use globgroups::GlobExpr;
fn simple() {
}
```
There is an old python version in `misc/globgroups.py`