From b888a221f832fd378db9e22f10155146c4fa4c5a Mon Sep 17 00:00:00 2001 From: Nic Gaffney Date: Thu, 23 Oct 2025 13:22:58 -0500 Subject: random stuff MERGE --- examples/hello.sloth | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'examples/hello.sloth') diff --git a/examples/hello.sloth b/examples/hello.sloth index 5aa54e9..641ed1a 100644 --- a/examples/hello.sloth +++ b/examples/hello.sloth @@ -1,7 +1,6 @@ fn main() Int { - var i: Int = 10; - for j in 0..i { - print(istr(j)); + while true { + println("Hello World!"); } return 0; } -- cgit v1.2.3