We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2981b05 commit 45a3bddCopy full SHA for 45a3bdd
README.md
@@ -24,7 +24,7 @@ This language is still currently experimental with many more features to come.
24
* [Closures](examples/closure.ls).
25
* [Recursion](examples/recursion.ls).
26
* [Blocks](examples/blocks.ls).
27
-* Printing.
+* [Printing](examples/print.ls).
28
* Lambda expressions/Anonymous functions.
29
* Static & Instance getters.
30
* Static class methods.
examples/print.ls
@@ -0,0 +1,10 @@
1
+var x = 10;
2
+
3
+print x;
4
5
+x = "printing a string.";
6
7
+class Person {}
8
9
+print Person;
10
+print Person();
0 commit comments