├── README.md ├── app ├── data.txt ├── go.mod ├── main.go └── mypackage │ └── mypackage.go ├── app2 ├── go.mod ├── testemail.go └── testemail_test.go ├── cltest.go ├── data.txt ├── hellogo.go └── webapp ├── new.html ├── todos.txt ├── view.html └── webapp.go /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/README.md -------------------------------------------------------------------------------- /app/data.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 5 4 | 7 5 | 11 6 | 13 7 | -------------------------------------------------------------------------------- /app/go.mod: -------------------------------------------------------------------------------- 1 | module example/project 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /app/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/app/main.go -------------------------------------------------------------------------------- /app/mypackage/mypackage.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/app/mypackage/mypackage.go -------------------------------------------------------------------------------- /app2/go.mod: -------------------------------------------------------------------------------- 1 | module app2 2 | 3 | go 1.18 4 | -------------------------------------------------------------------------------- /app2/testemail.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/app2/testemail.go -------------------------------------------------------------------------------- /app2/testemail_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/app2/testemail_test.go -------------------------------------------------------------------------------- /cltest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/cltest.go -------------------------------------------------------------------------------- /data.txt: -------------------------------------------------------------------------------- 1 | 2 2 | 3 3 | 5 4 | 7 5 | 11 6 | 13 7 | -------------------------------------------------------------------------------- /hellogo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/hellogo.go -------------------------------------------------------------------------------- /webapp/new.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/webapp/new.html -------------------------------------------------------------------------------- /webapp/todos.txt: -------------------------------------------------------------------------------- 1 | Clean Room 2 | -------------------------------------------------------------------------------- /webapp/view.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/webapp/view.html -------------------------------------------------------------------------------- /webapp/webapp.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/derekbanas/Go-Tutorial/HEAD/webapp/webapp.go --------------------------------------------------------------------------------