adnan360 6cebc22fd7 Add go dir | hace 3 años | |
---|---|---|
.. | ||
.gitignore | hace 3 años | |
README.md | hace 3 años | |
rand.go | hace 3 años | |
rand2.go | hace 3 años | |
rand3.go | hace 3 años |
To build and run rand.go
you can do something like:
go build rand.go
./rand
# or
go build -o someothernameforexecutable rand.go
./someothernameforexecutable
# building without debug symbols (smaller file size)
go build -ldflags '-s -w' rand.go
ls -la rand