A Canadian election may happen sooner than expected. Here’s why

Published
Lucas Vallejo's profile picture
Lucas Vallejo
Software Engineer

Heading level 1

Heading level 2

Heading level 3

Heading level 4

Heading level 5
Heading level 6

Paragraph

#0F1012 I really like using Markdown.

I think I’ll use it to format all of my documents from now on.

Bold

I just love bold text.

I just love bold text.

Italic

Italicized text is the cat’s meow.

Italicized text is the cat’s meow.

Blockquotes

Dorothy followed her through many of the beautiful rooms in her castle.

Blockquotes with Multiple Paragraphs

Dorothy followed her through many of the beautiful rooms in her castle.

The Witch bade her clean the pots and kettles and sweep the floor and keep the fire fed with wood.

Blockquotes with Other Elements

The quarterly results look great!

  • Revenue was off the chart.
  • Profits were higher than ever.

Everything is going according to plan.

Lists

  1. First item
  2. Second item
  3. Third item
  4. Fourth item

  1. First item
  2. Second item
  3. Third item
    1. Indented item
    2. Indented item
  4. Fourth item

  • First item
  • Second item
  • Third item
    • Indented item
    • Indented item
  • Fourth item

Code

At the command prompt, type nano.

package main

import (
    "fmt"
    "time"
)

func f(from string) {
    for i := 0; i < 3; i++ {
        fmt.Println(from, ":", i)
    }
}

func main() {

    f("direct")

    go f("goroutine")

    go func(msg string) {
        fmt.Println(msg)
    }("going")

    time.Sleep(time.Second)
    fmt.Println("done")
}

My favorite search engine is Duck Duck Go.

URLs and Email Addresses

https://www.markdownguide.org [email protected]

I love supporting the EFF. This is the Markdown Guide. See the section on code.

Images

Test image