Coarse Rosinflower
Coarse Rosinflower
```java name = Lu! print(name)! // Should print "Luke". name = Luke! var const name! ```
In the documentation in the README, `Clay_FloatingElementConfig.zIndex` is declared like: > ```c > /* ... */ > uint16_t zIndex; > /* ... */ > ``` However, soon after, the documentation...
`CLAY__STRING_LENGTH` is defined as: ```c #define CLAY__STRING_LENGTH(s) ((sizeof(s) / sizeof((s)[0])) - sizeof((s)[0])) ``` However, this is incorrect. It technically works under most circumstances, which is why it's gone unnoticed, however,...
Type: Bug Step 0: Set your "C Standard" to at least `c23` (I have it on `gnu23`). Step 1: Declare a sized enum: ```c enum: uint32_t { foo = 0xDEADBEEF,...
Three quote characters are just wrong: * "Single Low-9 Quotation Mark" isn't low or 9-shaped. * "Left Single Quotation Mark" is actually a Single High-reversed-9. * "Left Double Quotation Mark"...
## The code with a problem is: ```sh printf %s\\n "$1" >& 2 ``` ## It looks like: ## It should look like: The `2` in `>& 2` should be...
## The code with a problem is: ```sh echo "${1:-Nothing}" ``` ## It looks like: ## It should look like: The `Nothing` is a string and should be brown.
## The code with a problem is: ```sh echo "${1-Nothing}" ``` ## It looks like: ## It should look like: The `-` is part of the operator and should be...
## The code with a problem is: ``` exec 3>& - ``` ## It looks like: ## It should look like: The `-` is brown, as if it were a...
## The code with a problem is: ``` case "$1" in a) echo 'a';; b) echo 'b';; *) echo '*';; esac ``` ## It looks like: ## It should look...