diff options
author | Michael Muré <batolettre@gmail.com> | 2018-07-10 14:18:50 +0200 |
---|---|---|
committer | Michael Muré <batolettre@gmail.com> | 2018-07-10 14:18:50 +0200 |
commit | a85730cf5287d40a1e32d3a671ba2296c73387cb (patch) | |
tree | 2c471e28d7832759ee6f878455e679ac26bb1baf | |
download | git-bug-a85730cf5287d40a1e32d3a671ba2296c73387cb.tar.gz |
hello world
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | git-bug.go | 7 |
2 files changed, 8 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 00000000..1e5ffaff --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +git-bug diff --git a/git-bug.go b/git-bug.go new file mode 100644 index 00000000..e82fdf42 --- /dev/null +++ b/git-bug.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("Hello git !") +} |