forked from go/golangs_learn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
245 B
16 lines
245 B
4 years ago
|
package main
|
||
|
|
||
|
import "fmt"
|
||
|
|
||
|
/***
|
||
|
提示:
|
||
|
|
||
|
帮助信息存储在 【给go生成的windows exe文件添加icon图标.png】 文件中
|
||
|
rsrc -manifest main.exe.manifest -ico rc.ico -o main.syso
|
||
|
|
||
|
*/
|
||
|
|
||
|
func main() {
|
||
|
fmt.Print("这是样例!")
|
||
|
}
|