summaryrefslogtreecommitdiff
path: root/xmake/templates/go/console/project/src
diff options
context:
space:
mode:
authorruki <[email protected]>2017-02-28 10:18:42 +0800
committerruki <[email protected]>2017-02-28 10:18:42 +0800
commitd5145e76c8ef2480dbf43ece33925bcd97fe598c (patch)
tree36aacc4636e645209ed52dd2d8638e4c24ff9a09 /xmake/templates/go/console/project/src
parentfc68d8521d388daa8c6e3a21919feca864f7b741 (diff)
add golang and rust templates
Diffstat (limited to 'xmake/templates/go/console/project/src')
-rw-r--r--xmake/templates/go/console/project/src/main.go14
1 files changed, 14 insertions, 0 deletions
diff --git a/xmake/templates/go/console/project/src/main.go b/xmake/templates/go/console/project/src/main.go
new file mode 100644
index 000000000..8ea127243
--- /dev/null
+++ b/xmake/templates/go/console/project/src/main.go
@@ -0,0 +1,14 @@
+package main
+
+/* /////////////////////////////////////////////////////////////////////////////////////////////////
+ * imports
+ */
+import "fmt"
+
+/* /////////////////////////////////////////////////////////////////////////////////////////////////
+ * main
+ */
+func main() {
+
+ fmt.Println("hello xmake for go!")
+}