You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

663 B

firstword

Instructions

Write a function that takes a string and return a string containing its first word, followed by a newline ('\n').

  • A word is a sequence of characters delimited by spaces or by the start/end of the argument.

Expected Function

func FirstWord(s string) string {
    // ...
}

Usage

Here is a possible way to test your function:

package main

import (
    "fmt"

    "piscine"
)

func main() {
    fmt.Print(piscine.FirstWord("hello there"))
    fmt.Print(piscine.FirstWord(""))
    fmt.Print(piscine.FirstWord("hello   .........  bye"))
}

And its output:

$ go run .
hello

hello
$