Added fmt package

This commit is contained in:
Eduard Urbach 2025-04-07 15:13:57 +02:00
parent cac2bad2fe
commit 08ea91f46c
No known key found for this signature in database
GPG key ID: C874F672B1AF20C0
11 changed files with 25 additions and 20 deletions

View file

@ -1,7 +1,7 @@
import io
import fmt
main() {
io.number(gcd(1071, 462))
fmt.decimal(gcd(1071, 462))
}
gcd(a int, b int) -> int {