I have a constant value that I only plan to use once in my codebase. I am going to declare it using a const
declaration.
If this was a function-level variable I would declare it at the point of usage, but doing so with a constant just seems to clutter my function.