What are some best practices for general purpose -gcflags to use for
debugging and conversely for optimizing code?
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
t
package main
import (
"fmt"
"os"
"strconv"
"crypto/rand"
"math/big"
"unicode"
"unsafe"
)
func main() {
num, err := strconv.ParseUint(os.Args[1],10,64)
if err != nil {
panic(err)
}
randrunes := make([]rune,num,num)
var char rune
for i :=
The title.
--
You received this message because you are subscribed to the Google Groups
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.