Skip to content

Latest commit

 

History

History
26 lines (20 loc) · 385 Bytes

README.md

File metadata and controls

26 lines (20 loc) · 385 Bytes

leetspeak-go

Simple English to LeetSpeak converter.

Installation

Assuming you have a working Go environment and GOPATH/bin is in your PATH

go get -u github.com/iSuperMostafa/leetspeak-go

Usage

package main

import (
	"fmt"
	"github.com/iSuperMostafa/leetspeak-go"
)

func main() {
    leet := leetspeak.ConvertToLeet("hello")
	fmt.Println(leet)
}