aboutsummaryrefslogtreecommitdiff
path: root/test.sloth
diff options
context:
space:
mode:
Diffstat (limited to 'test.sloth')
-rw-r--r--test.sloth10
1 files changed, 10 insertions, 0 deletions
diff --git a/test.sloth b/test.sloth
new file mode 100644
index 0000000..be3b1de
--- /dev/null
+++ b/test.sloth
@@ -0,0 +1,10 @@
+
+fn getStr() Bool
+{
+ return true;
+}
+
+fn main() Int {
+ val poggers: Int = getStr();
+ return 0;
+}