Skip to content

Instantly share code, notes, and snippets.

@cyantarek
Created February 8, 2020 15:54
Show Gist options
  • Save cyantarek/d20df7562af1302a6af5c08af09146cd to your computer and use it in GitHub Desktop.
Save cyantarek/d20df7562af1302a6af5c08af09146cd to your computer and use it in GitHub Desktop.
package reversestring
import (
"testing"
)
func TestReverseString(t *testing.T) {
if ReverseString("") != "" {
t.Fail()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment