|
пре 3 година | |
---|---|---|
.. | ||
.gitignore | пре 3 година | |
README.md | пре 3 година | |
rand.go | пре 3 година | |
rand2.go | пре 3 година | |
rand3.go | пре 3 година |
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