Update README.md

This commit is contained in:
Lia Brüggemann 2023-09-09 15:51:11 +02:00 committed by GitHub
parent 2773644b16
commit dd49ca289d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -16,20 +16,18 @@ Lestrade is a small Go library that allows you to print text in different colors
## Usage:
```go
package main
import (
"fmt"
"github.com/BlyDoesCoding/lestrade"
lestrade "github.com/BlyDoesCoding/Lestrade"
)
func main() {
fmt.Println(lestrade.Red("This is red text"))
fmt.Println(lestrade.Green("This is green text"))
fmt.Println(lestrade.Blue("This is blue text"))
lestrade.PrintRainbow("how are you?")
}
```
## Contributing