From 92fb9c8b948f5622127332c4e8a2732f682154ea Mon Sep 17 00:00:00 2001 From: Carl Bordum Hansen Date: Mon, 15 Jul 2019 16:43:22 +0200 Subject: [PATCH] VCasino was printing the opposite of intended --- examples/vcasino/VCasino.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/vcasino/VCasino.v b/examples/vcasino/VCasino.v index 970ec18394..a3ce3f5203 100644 --- a/examples/vcasino/VCasino.v +++ b/examples/vcasino/VCasino.v @@ -81,7 +81,7 @@ fn get_bet(money int) int { println('error: $line is not heigher than 1.') continue } else if bet > money { - println('error: $line is not heigher than your money.') + println('error: $line is more money than you have.') } } return bet