Removed log from the standard library

This commit is contained in:
2025-02-22 18:02:50 +01:00
parent df782ae1cb
commit 467fbd9725
11 changed files with 38 additions and 41 deletions

View File

@ -1,5 +1,4 @@
import io
import log
main() {
fizzbuzz(15)
@ -13,7 +12,7 @@ fizzbuzz(n int) {
x % 15 == 0 { io.out("FizzBuzz") }
x % 5 == 0 { io.out("Buzz") }
x % 3 == 0 { io.out("Fizz") }
_ { log.number(x) }
_ { io.number(x) }
}
x += 1