From: Ant Zucaro Date: Sun, 29 Oct 2017 19:28:00 +0000 (-0400) Subject: Add initial 'hello world'. X-Git-Url: http://git.xonotic.org/?a=commitdiff_plain;h=8203030be0fa5fb67521a7c8d9df494277b49bdb;p=xonotic%2Fxonstat.git Add initial 'hello world'. --- diff --git a/xonstat/util/xs_glicko.go b/xonstat/util/xs_glicko.go new file mode 100644 index 0000000..67821f5 --- /dev/null +++ b/xonstat/util/xs_glicko.go @@ -0,0 +1,9 @@ +package main + +import ( + "fmt" +) + +func main() { + fmt.Println("Hello, world") +}