This is some text. It has inline code
and links.
- hello world.
- lists work
- Nested numbered.
- Go deep.
- Numbers in numbers.
- Hooray.
for (let i = 1; i <= 100; i++) {
let out = '';
if (i % 3 === 0) out += 'Fizz';
if (i % 5 === 0) out += 'Buzz';
console.log(out || i);
}}
There are nice things like blockquotes too:
Hello world
- Alan Kay