From 1290b43a4a0f89d56cb469f47dbbdfaef9402fe3 Mon Sep 17 00:00:00 2001 From: Kenny Meyer Date: Mon, 29 Nov 2010 17:28:21 -0300 Subject: [PATCH] add go source code --- freedesktop.org.xml.in | 5 +++++ tests/list | 2 ++ tests/test.go | 5 +++++ 3 files changed, 12 insertions(+), 0 deletions(-) create mode 100644 tests/test.go diff --git a/freedesktop.org.xml.in b/freedesktop.org.xml.in index 49a34b9..580729d 100644 --- a/freedesktop.org.xml.in +++ b/freedesktop.org.xml.in @@ -4922,6 +4922,11 @@ command to generate the output files. + + <_comment>Go source code + + + <_comment>Python script diff --git a/tests/list b/tests/list index 8d0e5c6..7bc8861 100644 --- a/tests/list +++ b/tests/list @@ -218,6 +218,8 @@ simple-obj-c.m text/x-objcsrc ssh-public-key.txt text/plain ox # http://tools.ietf.org/html/draft-ietf-vcarddav-vcardrev-12 test.vcf text/directory +# Test Go source code +test.go text/x-go # xml subtypes test.ttx application/x-font-ttx diff --git a/tests/test.go b/tests/test.go new file mode 100644 index 0000000..bf852fe --- /dev/null +++ b/tests/test.go @@ -0,0 +1,5 @@ +import "fmt" + +func main() { + fmt.Printf("Hello World !!! \n") +} -- 1.7.3.2