Emphasize your words

Report a typo

Sometimes, if you want someone to hear you, you need to make your voice louder. Your task is to make the provided line LOUDER, if you know what I mean!

Write a program in Go
package main

import (
"bufio"
"fmt"
"os"
"strings"
)

func makeItLouder(original string) string {
return ? // return LOUDER line
}

// DO NOT EDIT
func main() {
scanner := bufio.NewScanner(os.Stdin)
scanner.Scan()
fmt.Println(makeItLouder(scanner.Text()))
}
___

Create a free account to access the full topic