From 3171741f20b0369aab109dfa0da829b444d15fad Mon Sep 17 00:00:00 2001 From: Pablo Diaz Date: Wed, 15 May 2024 15:43:26 -0500 Subject: [PATCH] disable debug by default --- examples/alpha/main.go | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/examples/alpha/main.go b/examples/alpha/main.go index 61cbdb2..7b6fc72 100644 --- a/examples/alpha/main.go +++ b/examples/alpha/main.go @@ -9,11 +9,6 @@ func main() { itn.SetDebug(true) processor := itn.NewLanguageES() - new_string := processor.Alpha2Digit( - "uno dos quince", - false, - true, - 3, - ) + new_string := processor.Alpha2Digit("uno dos quince", false, true, 3) println(new_string) }