38 lines
706 B
Go
38 lines
706 B
Go
// For more tutorials: https://blog.learngoprogramming.com
|
|
//
|
|
// Copyright © 2018 Inanc Gumus
|
|
// Learn Go Programming Course
|
|
// License: https://creativecommons.org/licenses/by-nc-sa/4.0/
|
|
//
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// ---------------------------------------------------------
|
|
// EXERCISE
|
|
// 1. Look at the documentation of strings package
|
|
// 2. Find a function that trims the spaces from
|
|
// the given string
|
|
// 3. Trim the text variable and print it
|
|
//
|
|
// EXPECTED OUTPUT
|
|
// The weather looks good.
|
|
// I should go and play.
|
|
// ---------------------------------------------------------
|
|
|
|
func main() {
|
|
msg := `
|
|
|
|
The weather looks good.
|
|
I should go and play.
|
|
|
|
|
|
|
|
`
|
|
|
|
fmt.Println(msg)
|
|
}
|