Nice, @JustPete! I found it perfectly comprehensible.
Here’s a tip for anyone who would like to post code formatted as monospace font. You can use a formatting language called Markdown. In markdown we use backticks (`) to surround `inline code snippets`
, and three of them on their own line to make a monospaced code block:
```
// monospaced code here
```
To get code highlighting, you can add a language name right after the opening backticks:
```javascript
// Highlighted
function { var variable = 1 }
```
Will render as:
// Highlighted
function f { var variable = 1 }