This week's code snippet, Baklava in Golo, is brought to you by Subete and the Sample Programs repo.
module baklava
function main = |args| {
for (var n = -10, n <= 10, n = n + 1) {
let numSpaces = Math.abs(n)
let numStars = 21 - 2 * numSpaces
println(" " * numSpaces + "*" * numStars)
}
}
Below you'll find an up-to-date list of articles by me on The Renegade Coder. For ease of browsing, emojis let you know the article category (i.e., blog: βοΈ, code: π», meta: π, teach: π)
- π Sample Programs Repo Celebrates 1,000 Code Snippets
- π Canvas Is Not Built With Educators in Mind
- π» Workshopping a Tier List Generator
- βοΈ No, The GRE Should Not Be Reinstated
- βοΈ Summarizing My Dissertation for the Layman
- βοΈ 9 Things I Wish I Knew About Doctoral Programs
- βοΈ I Successfully Completed My PhD in Engineering Education
- π So You Want to Be a University Educator
- βοΈ Looking Forward to the Future
- π» Unpacking the Jargon Around Compilers, Interpreters, and More
Also, here are some fun links you can use to support my work.
This document was automatically rendered on 2025-01-10 using SnakeMD.