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.
 
 
 
 
 
 
nprimo a15dcbf446 feat(firstword): add main.go 3 months ago
..
README.md docs(firstword): require a function instead of a program 3 months ago
main.go feat(firstword): add main.go 3 months ago

README.md

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
$