|
|
|
|
|
by twic
1919 days ago
|
|
In some long functions (really only very long app-setup functions), i break up related bits into blocks: {
thing_1_a
thing_1_b
thing_1_c
}
{
thing_2_a
thing_2_b
}
Blocks are are a language feature in a few languages, but are barely ever used, so it is rather weird to write and read at first. |
|