2014年10月4日 星期六

Google Go 2 -- for

Ref : http://www.golang-book.com/5/index.htm

Hardware ASUS X450J
OS : Windows 8.1 Prof

1. Edit ForEx.go
//------------
package main

import "fmt"

func main() {
    i := 1
    for i <= 10 {
        fmt.Println(i)
        i = i + 1
    }
}
//---------------
5. Run ForEx.go

沒有留言:

張貼留言