Hello world!

A post to preserve frequently used blocks.

Code Example #

199
200
201
202
203
204
205
206
207
208
209
210
211
package main

import "log"

func add(x int, y int) int {
  log.Println("We are going to take the sum of two numbers, and leave a long comment.")
  return x + y
}

func main() {
  y := add(1, 2)
  log.Println(y)
}

Sidenotes #

Test sidenote. (1)This is a sidenote. This is a marginnote.