Skip to content

xdanos/String-matching-Go

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

81 Commits
 
 
 
 
 
 
 
 

Repository files navigation

String matching in Go

Implementations of string matching alghoritms in Go language.

By Filip Halas.

setting up the Go environment

  1. download and install Go from here
  2. check that environmental variables are set correctly - try executing go in your command line
  3. in case of failure (or when using ZIP archive) you will need to set them manually
    • Windows: go to Control Panel - System - Advanced (tab) - Environment variables - system variables
    • Unix/Linux: try executing in your command line: export GOROOT=$HOME/golang/go export PATH=$PATH:$GOROOT/bin
    • variable GOROOT should be set to something like C:\go on Windows or $HOME/golang/go on Unix/Linux
    • variable GOPATH to something like $GOROOT\bin on Windows or $GOROOT/bin on Unix/Linux

running the source code

  • For running go file in your command line use: go run filename.go
  • For compiling go file to Windows executable use: go build filename.go

About

Implementations of string matching alghoritms in Go language.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published