> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tangibleideas.org/llms.txt
> Use this file to discover all available pages before exploring further.

# hello go

## Install

[https://go.dev/dl/](https://go.dev/dl/)

## Verify Installation

```shellscript theme={null}
go version
```

## Write your first go program

Create a directory and navigate to it

```shellscript theme={null}
mkdir hello-go && cd hello-go
```

Create a file named `main.go` with following code

```go theme={null}
package main

import "fmt"

func main() {
	fmt.Println("hello go!")
}
```

## Run

```shellscript theme={null}
go run main.go
```

## Cleanup

Delete the `hello-go` directory

```shellscript theme={null}
cd .. && rm -r hello-go
```
