1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

examples: fix warnings when doing ./v -W -progress -check-syntax build-examples

This commit is contained in:
Delyan Angelov
2020-10-26 13:14:21 +02:00
parent a7e3092165
commit 9772eb7c96
14 changed files with 203 additions and 157 deletions

View File

@ -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 ')