码迷,mamicode.com
首页 > 编程语言 > 详细

go 语言学习

时间:2016-04-05 15:43:37      阅读:164      评论:0      收藏:0      [点我收藏+]

标签:

// Hello project main.go
package main

import (
    "fmt"
)

var str string

func miss(name string) {
    fmt.Print(len(name))

}

func main() {

    str = "ling nizai nali" //字符串赋值
    ch := str[0]            // 取字符串的第一个字符
    fmt.Printf("The length of \"%s\" is %d \n", str, len(str))
    fmt.Printf("The first character of \"%s\" is %c.\n", str, ch)
}

go 语言学习

标签:

原文地址:http://www.cnblogs.com/missling/p/5354813.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!