source: code/trunk/version.go

Last change on this file was 69, checked in by yakumo.izuru, 7 weeks ago

もっと頑張れよ、魔理沙

File size: 206 bytes
Line 
1package marisa
2
3import (
4 "fmt"
5)
6
7var (
8 // Version release version
9 Version = "0.0.1"
10)
11
12// FullVersion display the full version and build
13func FullVersion() string {
14 return fmt.Sprintf("%s", Version)
15}
Note: See TracBrowser for help on using the repository browser.