refactor: first four section, organize cont.

This commit is contained in:
Inanc Gumus
2018-10-22 21:11:10 +03:00
parent f860bc6895
commit fae3ab32d9
7 changed files with 42 additions and 4 deletions

View File

@ -8,7 +8,8 @@
package main
// ---------------------------------------------------------
// EXERCISE
// EXERCISE: Print names
//
// Print your name and your best friend's name using
// Println twice
//

View File

@ -1,5 +1,6 @@
// ---------------------------------------------------------
// EXERCISE
// EXERCISE: Print GOPATH
//
// Print your GOPATH using `go env` tool
//
// EXPECTED OUTPUT

View File

@ -1,6 +1,6 @@
1. **Print your name and your best friend's name** using Println twice. [Check out this exercise here](https://github.com/inancgumus/learngo/tree/master/02-write-your-first-program/exercises/01).
1. **Print your name and your best friend's name** using Println twice. [Check out this exercise here](https://github.com/inancgumus/learngo/tree/master/02-write-your-first-program/exercises/01-print-names).
2. **Print your GOPATH** using `go env` tool. [Check out this exercise here](https://github.com/inancgumus/learngo/tree/master/02-write-your-first-program/exercises/02).
2. **Print your GOPATH** using `go env` tool. [Check out this exercise here](https://github.com/inancgumus/learngo/tree/master/02-write-your-first-program/exercises/02-print-gopath).
3. **Say hello to yourself.**