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 3aca1b2 commit 7d95a61Copy full SHA for 7d95a61
archive/l/lucee/baklava.cfm
@@ -0,0 +1,16 @@
1
+<html>
2
+ <head>
3
+ <title>Baklava</title>
4
+ </head>
5
+ <body>
6
+ <pre><cfscript>
7
+for (n = -10; n <= 10; n++) {
8
+ numSpaces = abs(n);
9
+ numStars = 21 - 2 * numSpaces;
10
+ spaces = repeatString(" ", numSpaces);
11
+ stars = repeatString("*", numStars);
12
+ writeOutput(spaces & stars & "<br>");
13
+}
14
+ </cfscript></pre>
15
+ </body>
16
+</html>
archive/l/lucee/testinfo.yml
@@ -4,5 +4,5 @@ folder:
container:
image: "rzuckerm/lucee"
- tag: "5.4.4.38-1"
+ tag: "5.4.4.38-3"
cmd: "run_lucee {{ source.name }}{{ source.extension }}"
0 commit comments