adrianblade / codewars_golang_solution

Codewars kata training

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

About

Codewars kata training


Languages

Language:Go 100.0%