mirror of
https://github.com/gopl-zh/gopl-zh.github.com.git
synced 2024-11-05 14:03:45 +00:00
25 lines
363 B
Go
25 lines
363 B
Go
// Copyright © 2016 Alan A. A. Donovan & Brian W. Kernighan.
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
|
|
// See page 4.
|
|
//!+
|
|
|
|
// Echo1 prints its command-line arguments.
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
var s, sep string
|
|
for i := 1; i < len(os.Args); i++ {
|
|
s += sep + os.Args[i]
|
|
sep = " "
|
|
}
|
|
fmt.Println(s)
|
|
}
|
|
|
|
//!-
|