# README
The go run command allows you to run Go code directly without explicitly compiling it into an executable.
You can directly run the code using the go run command: go run hello.go
.
This will execute the code and print Hello, Go! to the console.