public/subjects/isupper
OGordoo 369506868a
changing sentence structure
2021-10-27 17:00:58 +01:00
..
README.md changing sentence structure 2021-10-27 17:00:58 +01:00

README.md

isupper

Instructions

Write a function that returns true if the string passed as parameter contains only uppercase characters, otherwise, returns false.

Expected function

func IsUpper(s string) bool {

}

Usage

Here is a possible program to test your function :

package main

import (
	"fmt"
	"piscine"
)

func main() {
	fmt.Println(piscine.IsUpper("HELLO"))
	fmt.Println(piscine.IsUpper("HELLO!"))

}

And its output :

$ go run .
true
false
$