Hello, world.

meir fischer
1 min readSep 30, 2017

--

package main

import (
"fmt"
)

func main() {
fmt.Println("Hello, World.")
}

--

--