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