mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
vweb: fix duplicate fn error with multiple templates
This commit is contained in:
16
vlib/strings/strings.v
Normal file
16
vlib/strings/strings.v
Normal file
@ -0,0 +1,16 @@
|
||||
module strings
|
||||
|
||||
//import rand
|
||||
|
||||
// random returns a random string with `n` characters
|
||||
/*
|
||||
// TODO
|
||||
pub fn random(n int) string {
|
||||
buf := vmalloc(n)
|
||||
for i in 0..n {
|
||||
buf[i] = rand.next()
|
||||
}
|
||||
return tos(buf)
|
||||
}
|
||||
*/
|
||||
|
Reference in New Issue
Block a user