#SwiftLang is such a nice scripting language. The only issue is that you basically always end up having to create a package.

Pro tip for when you do: use the `--type tool` flag

```
swift package init --type tool
```

when creating it. This will give you a nice scaffolding with ArgumentParser and the entry point already set up.

@finestructure oh cool! TIL