~/Obinna Okechukwu$|

Software Engineer

A software engineer with a passion for solving complex problems.

Distributed Systems | Algorithms | Bleeding-edge technologies


package main

import "fmt"

func main() {
	obinna := Developer{
		skills: []string{
			"Go", 
			"C++", 
            "Distributed Systems",
            "Algorithms",
		},
		passion: "Building scalable systems",
	}
	obinna.Code()
}