fix: grammar mistakes
This commit is contained in:
committed by
Inanc Gumus
parent
9806e01284
commit
06891c57fc
@@ -13,7 +13,7 @@ import "fmt"
|
||||
/*
|
||||
main function
|
||||
Go executes this program using this function.
|
||||
There should be only one main file in a main package.
|
||||
There should be only one main file in the main package.
|
||||
Executable programs are also called as "commands".
|
||||
*/
|
||||
func main() {
|
||||
|
@@ -17,7 +17,7 @@ func main() {
|
||||
|
||||
// Here, `main()` can access `bye()` and `hey()`
|
||||
|
||||
// It's because: bye.go, hey.go and main.go
|
||||
// It's because bye.go, hey.go and main.go
|
||||
// are in the main package.
|
||||
|
||||
bye()
|
||||
|
@@ -1,7 +1,7 @@
|
||||
// ---------------------------------------------------------
|
||||
// EXERCISE
|
||||
// Print your GOPATH using `go env` tool
|
||||
// Print your GOPATH using the `go env` tool
|
||||
//
|
||||
// EXPECTED OUTPUT
|
||||
// The physical folder path that is referenced by $GOPATH
|
||||
// ---------------------------------------------------------
|
||||
// ---------------------------------------------------------
|
||||
|
@@ -32,7 +32,7 @@
|
||||
|
||||
|
||||
## Which one below is true for runtime?
|
||||
1. It happens when your program starts running in a computer *CORRECT*
|
||||
1. It happens when your program starts running on a computer *CORRECT*
|
||||
2. It happens while your program is being compiled
|
||||
|
||||
|
||||
@@ -54,4 +54,4 @@
|
||||
>
|
||||
> **3:** Running can only happen after the compile-time
|
||||
>
|
||||
>
|
||||
>
|
||||
|
Reference in New Issue
Block a user