go/doc/progs/echo.go
Rob Pike 27a56171c9 growing the tutorial
R=gri
OCL=15115
CL=15115
2008-09-10 17:11:04 -07:00

33 lines
570 B
Go

// Copyright 2009 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package main
import (
OS "os";
Flag "flag";
)
var n_flag = Flag.Bool("n", false, nil, "don't print final newline")
const (
Space = " ";
Newline = "\n";
)
func main() {
Flag.Parse(); // Scans the arg list and sets up flags
var s string = "";
for i := 0; i < Flag.NArg(); i++ {
if i > 0 {
s += Space
}
s += Flag.Arg(i)
}
if !n_flag.BVal() {
s += Newline
}
OS.Stdout.WriteString(s);
}