Skip to content

Instantly share code, notes, and snippets.

View ruhtar's full-sized avatar
🐢
zero to hero

Arthur Amorim ruhtar

🐢
zero to hero
View GitHub Profile
@ruhtar
ruhtar / parser.go
Created August 4, 2024 00:31
[Golang] String to Int Parser without libs neither native functions
package main
import (
"fmt"
)
func main() {
result, err := toInt("431212")
if err != nil {
fmt.Println("deu erro moral")