14 lines
200 B
Go
14 lines
200 B
Go
import (
|
|
"big"
|
|
"fmt"
|
|
)
|
|
|
|
func main() {
|
|
defer func() {
|
|
recover()
|
|
}()
|
|
one := big.NewInt(1)
|
|
for i := big.NewInt(0); ; i.Add(i, one) {
|
|
fmt.Printf("%o\n", i)
|
|
}
|
|
}
|