aboutsummaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
Diffstat (limited to 'examples')
-rw-r--r--examples/guessing.sloth2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guessing.sloth b/examples/guessing.sloth
index ef680c9..cfb293d 100644
--- a/examples/guessing.sloth
+++ b/examples/guessing.sloth
@@ -1,5 +1,5 @@
fn main() Int {
- var computer: Int = randGen(1, 10);
+ val computer: Int = randGen(1, 10);
var tries: Int = 0;
var correct: Bool = false;