You can have runtime constants by writing them within functions. ```cs function CONST_VAL() { return 123; } ``` With this trick, you can have access to a constant w.r.t runtime, such as the number of bits within your prime.
You can have runtime constants by writing them within functions.
With this trick, you can have access to a constant w.r.t runtime, such as the number of bits within your prime.