青春纸盒子

文: 芦苇

你喜欢我笑的样子

我靠上了落寞的窗子

晚风吹起了我的袖子

明月沾湿了你的眸子


转身,你走出了两个人的圈子

树影婆娑,整座院子


挽起袖子

回头,把揽你忧伤一地的影子

装进,青春,这纸盒子


更多代码请关注我的微信小程序: "ecoder"

luwei0915

导航

12_Go基础(iota)


package main

import (
    "fmt"
)

const (
    b1 = iota
    c1 = 100
    b2 = iota
    b3
)

const (
    d1, d2 = iota + 1, iota + 2 // 只有一行,iota 不自增
    d3, d4 = iota + 1, iota + 2 // 增加一行,iota + 1
)

func main() {
    fmt.Println(b1, c1, b2, b3) // 0 100  2 3
    fmt.Println(d1, d2, d3, d4) // 1 2 2 3
}

 

posted on 2021-09-30 17:08  芦苇の  阅读(32)  评论(0编辑  收藏  举报