201902-02 Go语言变量声明 Go语言变量声明方法 1.通过关键字var [go]var one int //var 变量名 类型 var two int = 2 //为变量赋初值 var three = 3 //编译器能自动识别变量类型[/go] 2.通过:=简易声明 [go]one := 1 .... Read More >
201901-24 Go语言实现Hello world [go]package main import "fmt" func main() { fmt.Println("Hello,world!") }[/go] .... Read More >
201812-14 CentOS 7下搭建WordPress博客全过程 一.部署LAMP环境 使用秋水逸冰的一键脚本 Github项目主页:https://github.com/teddysun/lamp [php] yum -y install wget screen git git clone https://github.com/tedd.... Read More >