25 lines
		
	
	
		
			446 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			25 lines
		
	
	
		
			446 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"
 | 
						|
 | 
						|
func main() {
 | 
						|
	var (
 | 
						|
		planet string
 | 
						|
		isTrue bool
 | 
						|
		temp   float64
 | 
						|
	)
 | 
						|
 | 
						|
	planet, isTrue, temp = "Mars", true, 19.5
 | 
						|
 | 
						|
	fmt.Println("Air is good on", planet)
 | 
						|
	fmt.Println("It's", isTrue)
 | 
						|
	fmt.Println("It is", temp, "degrees")
 | 
						|
}
 |