Skip to content

adrianblade/codewars_golang_solution

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 

Repository files navigation

Codewars Golang Katas

CodeWars

My Solutions

kyu Codewars Kate My Solutions
8 Highest and Lowest highest_and_lowest.go

To execute script

To run the program, put the code in hello-world.go and use go run.

$ go run hello-world.go hello world

Sometimes we’ll want to build our programs into binaries. We can do this using go build.

$ go build hello-world.go $ ls hello-world hello-world.go

We can then execute the built binary directly.

$ ./hello-world hello world

To execute test

go test # to run your tests

Releases

No releases published

Packages

No packages published

Languages