mirror of
https://github.com/vlang/v.git
synced 2025-09-13 14:32:26 +03:00
examples: fix warnings when doing ./v -W -progress -check-syntax build-examples
This commit is contained in:
parent
a7e3092165
commit
9772eb7c96
14 changed files with 203 additions and 157 deletions
|
@ -89,7 +89,7 @@ fn get_bet(money int) int {
|
|||
return bet
|
||||
}
|
||||
|
||||
fn run_wheel(bet_nbr, _bet int) int {
|
||||
fn run_wheel(bet_nbr int, _bet int) int {
|
||||
mut bet := _bet
|
||||
winning_nbr := rand.intn(50)
|
||||
print('Roulette Wheel spinning... and stops on the number $winning_nbr which is a ')
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue