| 
									
										
										
										
											2018-10-13 23:30:21 +03:00
										 |  |  | // Copyright © 2018 Inanc Gumus | 
					
						
							|  |  |  | // Learn Go Programming Course | 
					
						
							|  |  |  | // License: https://creativecommons.org/licenses/by-nc-sa/4.0/ | 
					
						
							|  |  |  | // | 
					
						
							| 
									
										
										
										
											2019-10-30 19:34:44 +03:00
										 |  |  | // For more tutorials  : https://learngoprogramming.com | 
					
						
							|  |  |  | // In-person training  : https://www.linkedin.com/in/inancgumus/ | 
					
						
							|  |  |  | // Follow me on twitter: https://twitter.com/inancgumus | 
					
						
							| 
									
										
										
										
											2018-10-13 23:30:21 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | // package main is a special package | 
					
						
							|  |  |  | // it allows Go to create an executable file | 
					
						
							|  |  |  | package main | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* | 
					
						
							|  |  |  | This is a multi-line comment. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import keyword makes another package available | 
					
						
							|  |  |  |   for this .go "file". | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | import "fmt" lets you access fmt package's functionality | 
					
						
							|  |  |  |   here in this file. | 
					
						
							|  |  |  | */ | 
					
						
							|  |  |  | import "fmt" | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | // "func main" is special. | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // Go has to know where to start | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // func main creates a starting point for Go | 
					
						
							|  |  |  | // | 
					
						
							|  |  |  | // After compiling the code, | 
					
						
							|  |  |  | // Go runtime will first run this function | 
					
						
							|  |  |  | func main() { | 
					
						
							|  |  |  | 	// after: import "fmt" | 
					
						
							|  |  |  | 	// Println function of "fmt" package becomes available | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Look at what it looks like by typing in the console: | 
					
						
							| 
									
										
										
										
											2019-05-15 23:39:54 +03:00
										 |  |  | 	//   go doc -src fmt Println | 
					
						
							| 
									
										
										
										
											2018-10-13 23:30:21 +03:00
										 |  |  | 
 | 
					
						
							|  |  |  | 	// Println is just an exported function from | 
					
						
							|  |  |  | 	//   "fmt" package | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Exported = First Letter is uppercase | 
					
						
							|  |  |  | 	fmt.Println("Hello Gopher!") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Go cannot call Println function by itself. | 
					
						
							|  |  |  | 	// That's why you need to call it here. | 
					
						
							|  |  |  | 	// It only calls `func main` automatically. | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// ----- | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Go supports Unicode characters in string literals | 
					
						
							|  |  |  | 	// And also in source-code: KÖSTEBEK! | 
					
						
							|  |  |  | 	// | 
					
						
							|  |  |  | 	// Because: Literal ~= Source Code | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// EXERCISE: Remove the comments from below --> // | 
					
						
							|  |  |  | 	// fmt.Println("Merhaba Köstebek!") | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | 	// Unnecessary note: | 
					
						
							|  |  |  | 	// "Merhaba Köstebek" means "Hello Gopher" | 
					
						
							|  |  |  | 	// in Turkish language | 
					
						
							|  |  |  | } |