Skip to content

SimonStnn/iseven

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

IsEven

A Go package that checks if a given value is even.

Usage

Here's how you can use the IsEven function:

import (
    "fmt"
    "github.com/SimonStnn/iseven"
)

func main() {
    fmt.Println(iseven.IsEven(5)) // Output: true
    fmt.Println(iseven.IsEven(4)) // Output: false
}

Installation

To install the iseven package, you can use go get:

go get github.com/SimonStnn/iseven

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

If you have any suggestions or improvements, please open an issue to discuss them. I appreciate all feedback and ideas!

Thank you for using my Go package!