30天30个Golang程序学习(一):格式化输出

前端之家收集整理的这篇文章主要介绍了30天30个Golang程序学习(一):格式化输出前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

第一天:


package main

import (
"fmt"
"time"
)

func main(){
day := time.Now().Weekday()
fmt.Printf("Hello,%s (%d)\n",day,day)
}

如果今天是周日,它将输出

Hello,Sunday (0)


以上程序在golang1.5.1 + ubuntu 15.10下调试通过。


个人微博:http://weibo.com/514860125

原文链接:https://www.f2er.com/go/190030.html

猜你在找的Go相关文章