From 205311ee346e5fd5b7c8efe91da4d4717569a966 Mon Sep 17 00:00:00 2001 From: Dmitry Neverov Date: Thu, 30 Aug 2018 20:09:23 +0200 Subject: [PATCH] nd: initial commit for the hello world program Change-Id: Ieac8adfeed028888b5c15bb6137d27685b1574c7 Reviewed-on: https://go-review.googlesource.com/132264 Run-TryBot: Ian Lance Taylor TryBot-Result: Gobot Gobot Reviewed-by: Ian Lance Taylor --- nd/main.go | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 nd/main.go diff --git a/nd/main.go b/nd/main.go new file mode 100644 index 0000000..a319c52 --- /dev/null +++ b/nd/main.go @@ -0,0 +1,11 @@ +// Copyright 2018 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +package main + +import "fmt" + +func main() { + fmt.Println("hello world") +}