diff --git a/README.md b/README.md index c69a077..10cfec4 100644 --- a/README.md +++ b/README.md @@ -446,6 +446,10 @@ Please note that this project is released with a [Code of Conduct](CODE_OF_CONDU # I +### Iain Earl +- DevOps Engineer, UK +- [![github-alt][github-img]](https://github.com/itmecho) + ### IGC - I am a Spanish CS student and developer. - I like Java and Python. diff --git a/code/hacktober.go b/code/hacktober.go new file mode 100644 index 0000000..78d4287 --- /dev/null +++ b/code/hacktober.go @@ -0,0 +1,22 @@ +package main + +import ( + "fmt" + "time" + "encoding/json" +) + +type Hacktober struct { + Message string `json:"msg"` + Date time.Time `json:"date"` +} + +func main () { + data := Hacktober{ + Message: "Hello Hacktoberfest 2018!", + Date: time.Now(), + } + + jsonBytes, _ := json.MarshalIndent(data, "", " ") + fmt.Println(string(jsonBytes)) +}