*- This is a bullet point
- This is a bullet point
This code imports the 'even or odd'
'''Golang
package main import "fmt" func checkevenodd(number int)string{ if number%2 == 0{ return "even" } return "odd" } func main(){ fmt.println(checkevenodd(5)) fmt.println(checkevenodd(6)) } '''