break default func interface select
case defer go map struct
chan else goto package switch
const fallthrough if range type
continute for import return var
单行注释: //
多行注释: /**/
简单的demo
/*
title: common_structure.go
author: orangleliu
date: 2014-08-05
des: the simple demo of erlang
*/
// a package only have a main
package main
// use “import” import other packages
import “fmt”
const Lzz = “Orangleliu”
var name = “erlong”
type age int
type golang struct{
}
func main(){
fmt.Println(“I love Erlog!”)
}
1 导入多个包的方法
import (
“fmt”
“os”
“time”
)
2 使用别名
import (
std “fmt”
)
使用大小写来区分 常量,变量,类型,接口,结构 或函数是共有还是私有
例如:
1. 函数名称 首字母小写: private
2. 函数名称 首字母大写: public
[Golong]学习笔记(一) 基础知识,布布扣,bubuko.com
原文地址:http://blog.csdn.net/orangleliu/article/details/38393085