blob: 85f348818e97655b0c9ad91509192db7f5351de6 [file] [log] [blame]
// 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.
// The waltzofpearls program that prints "hello!" to the console.
package main
import "fmt"
func main() {
fmt.Println("hello!")
}