mirror of
https://github.com/kiliman/operator-mono-lig.git
synced 2026-08-12 10:20:51 +02:00
7 lines
100 B
Go
7 lines
100 B
Go
func main() {
|
|
for i := 0; i <= 9; i++ {
|
|
f := count(fact(gen(i)))
|
|
fmt.Println(i, "! =", f)
|
|
}
|
|
}
|