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 c4cb35b commit 3da18adCopy full SHA for 3da18ad
modules/print.lp
@@ -0,0 +1,5 @@
1
+var println = fun(x) {
2
+ print(x, "\n")
3
+}
4
+
5
+export println
std.lp
@@ -1,5 +1,7 @@
import "./modules/for-loop.lp" as for
+import "./modules/print.lp" as println
export {
- "for": for
+ "for": for,
6
+ "println": println
7
}
0 commit comments