aboutsummaryrefslogtreecommitdiff
path: root/examples/test.sloth
diff options
context:
space:
mode:
Diffstat (limited to 'examples/test.sloth')
-rw-r--r--examples/test.sloth16
1 files changed, 0 insertions, 16 deletions
diff --git a/examples/test.sloth b/examples/test.sloth
deleted file mode 100644
index 7104593..0000000
--- a/examples/test.sloth
+++ /dev/null
@@ -1,16 +0,0 @@
-print("Pick a number between 1 and 5: ");
-
-val human = parse_int(readln());
-val computer = random(1, 5);
-
-if human == computer {
- println("You guessed the same number as me!");
-}
-
-if human > computer {
- println("Your guess was too high.");
-}
-
-if human < computer {
- println("Your guess was too low.");
-}