mirror of
https://github.com/vlang/v.git
synced 2025-08-03 17:57:59 -04:00
9 lines
122 B
V
9 lines
122 B
V
// vtest build: present_node?
|
|
import rand
|
|
|
|
fn test_string() {
|
|
res := rand.string(4)
|
|
assert res.len == 4
|
|
println(res)
|
|
}
|