commit 0bddceeb36a99e493c78673f9d9a3997460c6c1b Author: Radhi Fadlillah Date: Fri Jan 26 17:40:01 2018 +0700 Initial commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9e3d411 --- /dev/null +++ b/.gitignore @@ -0,0 +1,7 @@ +# Exclude config file +.vscode/ +*.toml + +# Exclude generated file +shiori* +*.db \ No newline at end of file diff --git a/main.go b/main.go new file mode 100644 index 0000000..d2c4e91 --- /dev/null +++ b/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello world") +}