package main import ( "fmt" ) func e(x int) string { if x == 0 { return "" } else { return e(x >> 1) + string(x & 1) } }
Standard input is empty
prog.go:3: imported and not used: fmt prog.go:5: function ends without a return statement
Standard output is empty