mirror of
https://github.com/vlang/v.git
synced 2025-08-19 01:30:15 -04:00
11 lines
174 B
V
11 lines
174 B
V
import rand
|
|
import time
|
|
|
|
fn main() {
|
|
rand.seed(time.now().unix)
|
|
|
|
for _ in 0..10 {
|
|
println('${rand.next(255)}.${rand.next(255)}.${rand.next(255)}.${rand.next(255)}')
|
|
}
|
|
}
|