My First Post

Posted by Daniel T. Morgan on Thursday Feb 18 2016
In
Tags go, golang, hugo, welsh, cymraeg

This is my first post on the site. I hope that you like it!

Welcome Function

Here is a little Golang function to welcome you:

package main

import "fmt"

func main() {
	fmt.Println("Sut mae, byd!")
}