2023-10-16 12:50:00 -04:00
|
|
|
# My Personal Go Playground
|
2023-10-16 12:40:41 -04:00
|
|
|
|
2023-10-16 12:50:00 -04:00
|
|
|
Playing with Golang mostly using the Head First Go book.
|
|
|
|
|
|
|
|
Entry point is playground.go.
|
|
|
|
|
2023-10-25 12:03:32 -04:00
|
|
|
To run the playground use
|
2023-10-16 12:50:00 -04:00
|
|
|
```sh
|
2023-10-25 12:03:32 -04:00
|
|
|
cd playground
|
2023-10-16 12:50:00 -04:00
|
|
|
go run trying_out_go
|
|
|
|
```
|
2023-10-25 12:03:32 -04:00
|
|
|
For any other folders, these are all separate go programs. Use the commands above and edit playground and trying_out_go to the matching folder name.
|