Skip to content

gooneraki/mystrings

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

mystrings

A simple Go package for string manipulation functions.

This repository is part of an educational tutorial from boot.dev.

Functions

  • Reverse(s string) string - Reverses a string left to right

Usage

package main

import (
    "fmt"
    "github.com/gooneraki/mystrings"
)

func main() {
    reversed := mystrings.Reverse("hello")
    fmt.Println(reversed) // Output: olleh
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •  

Languages