nixpulvis

Header 1

Header 2

Header 3

Header 4

Header 5
Header 6

This is normal text.

this is italic text.

this is bold text.

this is bold italic text.

this is typewriter text.

this is italic typewriter text.

this is bold typewriter text.

this is bold italic typewriter text.

this is typewriter text
that preserves whitespace,
and ignores markdown syntax like *this*.
# Number -> Number
def factorial(n)
    "free string"
    if n == 0
        1
    else
        n * factorial(n - 1)
    end
end
\[E = mc^2\]

Press A to do something.

Press Ctrl+a to do something else.

this is a quote.

This is a link.


  1. Think of a cool idea.
    • brainstorm
    • drink coffee.
  2. Start working.
    1. boot computer.
    2. drink more coffee
  3. ???
  4. Profit.
First Header Second Header
Content cell 1 Content cell 2
Content column 1 Content column 2

Make a choice:

Syntax Test

// All good code starts with a comment, right?
/// This is the start of the glorius documentation.
fn main() {
    println!("Hello.");
}