Sample Post


2021-01-11

t

Note: h1 heading is not supported in this template, but you can resolve that by just giving a styel to the html tag.

Formatting

Code

npm install
ls
cd
quicksort :: (Ord a) => [a] -> [a]
quicksort [] = []
quicksort (x:xs) =
    let smallerSorted = quicksort [a | a <- xs, a <= x]
        biggerSorted = quicksort [a | a <- xs, a > x]
    in  smallerSorted ++ [x] ++ biggerSorted

Table

Student Maths Physics Mean
Bertrand 13 09 11
Henri 15 14 14.5
Arnold 17 13 15
Means 15 12

Links

Chess Picture

Quote

"I… Declare…. Bankruptcy!"

Fonts

Bold, italic, code, underlind, verbatim

Bullet Points

  1. Goals and ambitions

    • [ ] Have super powers
    • [ ] Date a movie star
    • [ ] Own a dryer
  2. TODO Do what mum told you [1/3]

    • [ ] grow up
    • [ ] stop acting like a kid
    • [X] move out of the house

Images

Reflink

You should check out the wiki

Maths