Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 198 Bytes

README.md

File metadata and controls

9 lines (7 loc) · 198 Bytes

go by examples

mostly copied from https://gobyexample.com/

  1. How to run from a .go file:

    1. go run hello_world.go
  2. Build and run:

    1. go build hello_world.go
    2. ./hello_world