Skip to content

Commit

Permalink
Add Baklava in Lucee (#4129)
Browse files Browse the repository at this point in the history
  • Loading branch information
rzuckerm authored Dec 27, 2024
1 parent 3aca1b2 commit 7d95a61
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions archive/l/lucee/baklava.cfm
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
<html>
<head>
<title>Baklava</title>
</head>
<body>
<pre><cfscript>
for (n = -10; n <= 10; n++) {
numSpaces = abs(n);
numStars = 21 - 2 * numSpaces;
spaces = repeatString(" ", numSpaces);
stars = repeatString("*", numStars);
writeOutput(spaces & stars & "<br>");
}
</cfscript></pre>
</body>
</html>
2 changes: 1 addition & 1 deletion archive/l/lucee/testinfo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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 comments on commit 7d95a61

Please sign in to comment.