---
title: The introductory page of this site
posted: 2019-12-14
author: Octavia Optimism
---

In which Eeyore loses a tail, and Pooh finds one.

We can include code snippets in C#:

```cs
from x in list
let x2 = x * x
select { x, x2 }
```

Or in SQL

```sql
SELECT FirstName, LastName
FROM Person
```