This commit is contained in:
Geir Okkenhaug Jerstad 2024-08-13 20:31:39 +02:00
commit f7443bbab9
30 changed files with 271 additions and 0 deletions

BIN
echov3/echo Executable file

Binary file not shown.

13
echov3/echo.go Normal file
View 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
View file