mirror of
https://github.com/vlang/v.git
synced 2025-09-14 06:52:36 +03:00
rand: simplify rand.PRNG, move to optional types for error handling (#13570)
This commit is contained in:
parent
5c0b7b0d05
commit
114a341f5f
49 changed files with 609 additions and 1586 deletions
|
@ -25,7 +25,7 @@ fn main() {
|
|||
|
||||
['/users/:user']
|
||||
pub fn (mut app App) user_endpoint(user string) vweb.Result {
|
||||
id := rand.intn(100)
|
||||
id := rand.intn(100) or { 0 }
|
||||
return app.json({
|
||||
user: id
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue