go_chang922_ip/main.go

25 lines
539 B
Go

/*
* @Author: giaogiao giaogiao
* @Date: 2023-07-28 08:53:13
* @LastEditors: giaogiao giaogiao
* @LastEditTime: 2023-07-28 08:54:07
* @FilePath: \go\main.go
* @Description: 这是默认设置,请设置`customMade`, 打开koroFileHeader查看配置 进行设置: https://github.com/OBKoro1/koro1FileHeader/wiki/%E9%85%8D%E7%BD%AE
*/
package main
import (
"fmt"
)
func myFunc() {
fmt.Println("Call myFunc")
}
func text_url() {
fmt.Println("Call myFunc2")
}
func main() {
fmt.Println("嗨客网(www.haicoder.net)")
text_url()
}