ladydascalie: add my very own main.go

Change-Id: Ib2bfa4a98c3ec2d2e488e91fae8315c55e690945
Reviewed-on: https://go-review.googlesource.com/127503
Reviewed-by: roger peppe <rogpeppe@gmail.com>
Run-TryBot: roger peppe <rogpeppe@gmail.com>
TryBot-Result: Gobot Gobot <gobot@golang.org>
This commit is contained in:
Benjamin Cable 2018-08-02 13:39:42 +01:00 коммит произвёл Daniel Martí
Родитель 69bfc871b2
Коммит 17e2aa23f9
1 изменённых файлов: 11 добавлений и 0 удалений

11
ladydascalie/main.go Normal file
Просмотреть файл

@ -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("who even needs fmt?")
}