Bring in the little starter project and ignore cat and od binaries.

master
Zed A. Shaw 1 week ago
parent e8963fed17
commit 924f3db33d
  1. 2
      cat/.gitignore
  2. 2
      od/.gitignore
  3. 2
      starter/.gitignore
  4. 4
      starter/Makefile
  5. 3
      starter/go.mod
  6. 10
      starter/main.go

2
cat/.gitignore vendored

@ -0,0 +1,2 @@
cat
cat.exe

2
od/.gitignore vendored

@ -0,0 +1,2 @@
od
od.exe

@ -0,0 +1,2 @@
XX
XX.exe

@ -0,0 +1,4 @@
build:
go build .

@ -0,0 +1,3 @@
module lcthw.dev/go/go-coreutils/XX
go 1.24.2

@ -0,0 +1,10 @@
package main
import (
"fmt"
)
func main() {
fmt.Println("hello")
}
Loading…
Cancel
Save