aboutsummaryrefslogtreecommitdiff
path: root/examples/hello2.sloth
diff options
context:
space:
mode:
authorCody <cody@codyq.dev>2023-06-26 23:53:44 -0500
committerCody <cody@codyq.dev>2023-06-26 23:53:44 -0500
commit9748e95027af7820e6d9f08eb20b0901fdedfa2a (patch)
tree248fd1952537edc9e107110a6dc5a432c676d021 /examples/hello2.sloth
parent27b7187c21f6ff4e469592a8ea5757ca6aee8577 (diff)
downloadsloth-9748e95027af7820e6d9f08eb20b0901fdedfa2a.tar.gz
Delete random examples
Diffstat (limited to 'examples/hello2.sloth')
-rw-r--r--examples/hello2.sloth11
1 files changed, 0 insertions, 11 deletions
diff --git a/examples/hello2.sloth b/examples/hello2.sloth
deleted file mode 100644
index 589d969..0000000
--- a/examples/hello2.sloth
+++ /dev/null
@@ -1,11 +0,0 @@
-fn example() {}
-
-fn main() {
- var i: Int = 10;
- var j: Int = 1.0 - 1;
- while i > j {
- i = i - 1;
- }
- example(i);
-}
-