29 lines
		
	
	
		
			651 B
		
	
	
	
		
			Go
		
	
	
	
	
	
			
		
		
	
	
			29 lines
		
	
	
		
			651 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
 | |
| 
 | |
| // ---------------------------------------------------------
 | |
| // EXERCISE: Count the Arguments
 | |
| //
 | |
| //  Print the count of the command-line arguments
 | |
| //
 | |
| // INPUT
 | |
| //  bilbo balbo bungo
 | |
| //
 | |
| // EXPECTED OUTPUT
 | |
| //  There are 3 names.
 | |
| // ---------------------------------------------------------
 | |
| 
 | |
| func main() {
 | |
| 	// UNCOMMENT & FIX THIS CODE
 | |
| 	// count := ?
 | |
| 
 | |
| 	// UNCOMMENT IT & THEN DO NOT TOUCH THIS CODE
 | |
| 	// fmt.Printf("There are %d names.\n", count)
 | |
| }
 |