Home

This is the home page for the Go progamming language section

1. Simple test!

This is just an example:

Hello World!
package main

import (
    "fmt"
)

var (
    tmp string = "Hello, World!"
)

func main() {
    fmt.Println(tmp)
}