Index: uspace/dist/sysel/count.sy
===================================================================
--- uspace/dist/sysel/count.sy	(revision 09ababb72064b384cf70e51c6b186a578020991e)
+++ uspace/dist/sysel/count.sy	(revision 09ababb72064b384cf70e51c6b186a578020991e)
@@ -0,0 +1,18 @@
+class Counter is
+	fun count(a : Int; b : Int) is
+		var i : Int;
+
+		i = a;
+		while i < b do
+			Builtin.WriteLine(i);
+			i = i + 1;
+		end
+
+	end
+end
+
+class HelloWorld is
+	fun main() is
+		Counter.count(0, 10);
+	end
+end
Index: uspace/dist/sysel/hello.sy
===================================================================
--- uspace/dist/sysel/hello.sy	(revision 09ababb72064b384cf70e51c6b186a578020991e)
+++ uspace/dist/sysel/hello.sy	(revision 09ababb72064b384cf70e51c6b186a578020991e)
@@ -0,0 +1,5 @@
+class HelloWorld is
+	fun main() is
+		Builtin.WriteLine("Hello world!");
+	end
+end
