func e(x int) string { if x == 0 { return "" } else { return e(x >> 1) + string(x & 1) } }
Standard input is empty
prog.go:1: package statement must be first prog.go:1: function ends without a return statement prog.go:7: missing newline at end of file
Standard output is empty