+++
date = "2017-12-13T03:00:00+08:00"
draft = false
tags = []
title = "Hello, world!"
authors = ["xry111"]
+++

# Hello, world

## LaTeX equation

$$ e^{i \pi} + 1 = 0 $$

## Code

```go
package main

import "fmt"

func main() {
	return fmt.Println("Hello, world.")
}
```