2019-11-20 15:58:24 +01:00
|
|
|
import rand
|
|
|
|
import time
|
|
|
|
|
|
|
|
fn main() {
|
2020-06-02 19:47:28 +02:00
|
|
|
rand.seed(int(time.now().unix))
|
2019-11-20 15:58:24 +01:00
|
|
|
|
|
|
|
for _ in 0..10 {
|
|
|
|
println('${rand.next(255)}.${rand.next(255)}.${rand.next(255)}.${rand.next(255)}')
|
|
|
|
}
|
|
|
|
}
|