diff options
| author | ruki <[email protected]> | 2017-02-28 10:18:42 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2017-02-28 10:18:42 +0800 |
| commit | d5145e76c8ef2480dbf43ece33925bcd97fe598c (patch) | |
| tree | 36aacc4636e645209ed52dd2d8638e4c24ff9a09 /xmake/templates/go/console/project/src | |
| parent | fc68d8521d388daa8c6e3a21919feca864f7b741 (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.go | 14 |
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!") +} |
