Move tons of stuff into oldstuff/

This commit is contained in:
2020-06-04 09:54:59 -04:00
parent 49038bb8ef
commit aa1345b6ed
213 changed files with 0 additions and 12 deletions

12
oldstuff/whothis/main.go Normal file
View File

@@ -0,0 +1,12 @@
package main
import (
"fmt"
"os"
"path/filepath"
)
func main() {
fmt.Printf("args: %#v\n", os.Args)
fmt.Printf("prog: %s\n", filepath.Base(os.Args[0]))
}