init
This commit is contained in:
commit
f7443bbab9
30 changed files with 271 additions and 0 deletions
BIN
echov3/echo
Executable file
BIN
echov3/echo
Executable file
Binary file not shown.
13
echov3/echo.go
Normal file
13
echov3/echo.go
Normal file
|
@ -0,0 +1,13 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"fmt"
|
||||
"os"
|
||||
"strings"
|
||||
)
|
||||
|
||||
func main() {
|
||||
fmt.Println(strings.Join(os.Args[1:], " "))
|
||||
fmt.Print(os.Args[0:])
|
||||
|
||||
}
|
0
echov3/echo.go~
Normal file
0
echov3/echo.go~
Normal file
Reference in a new issue