From dd49ca289d4701f3a69fdabd2e2d0eb2510ca30d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lia=20Br=C3=BCggemann?= <118379719+BlyDoesCoding@users.noreply.github.com> Date: Sat, 9 Sep 2023 15:51:11 +0200 Subject: [PATCH] Update README.md --- README.md | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 977972a..eb163f6 100644 --- a/README.md +++ b/README.md @@ -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