The document could be more clear on when to and not to use `comptime`

I would check out this thread to get more context on this issue: How to force runtime evaluation?

I believe @kristoff’s answer is still up-to-date:

Also, we need to make a distinction here between const and comptime. A good instance of this is in the typical declaration of strings [] const u8 which is a slice of constant unsigned 8-bit integers. The const there says nothing about comptime as it’s embedded in a non-const type.

Then there are certain positions where comptime must be implied. For instance, in the deduction of return types: Implementing Generic Concepts on Function Declarations - #13 by AndrewCodeDev

2 Likes