TL;DR:
Make uppercase hexadecimal numbers work in logistic groups, combinators, control behaviors, etc.What?
Typing 0xffff works but typing 0xFFFF does not, and I think it should.Why?
I tried various prefixes and postfixes to see if hex was supported at all, and none of them worked.- 0x prefix
- x prefix
- x postfix
- h prefix
- h postfix
But it turns out hexadecimals are supported after all (with a 0x prefix), and the problem is I was using uppercase A-F instead of lowercase a-f. Usually, hex numbers are not case sensitive.