Removed log from the standard library
This commit is contained in:
parent
49214c9a6e
commit
4587503a57
11 changed files with 38 additions and 41 deletions
|
@ -1,5 +1,4 @@
|
|||
import io
|
||||
import log
|
||||
|
||||
main() {
|
||||
collatz(12)
|
||||
|
@ -13,7 +12,7 @@ collatz(x int) {
|
|||
x = 3 * x + 1
|
||||
}
|
||||
|
||||
log.number(x)
|
||||
io.number(x)
|
||||
|
||||
if x == 1 {
|
||||
return
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue