This week's code snippet, Baklava in Wren, is brought to you by Subete and the Sample Programs repo.
for (i in (-10..10)) {
var numSpaces = (i >= 0) ? i : -i
System.print(" " * numSpaces + "*" * (21 - 2 *numSpaces))
}
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: π)
- π» Unpacking the Jargon Around Compilers, Interpreters, and More
- π» What Are Type Hints in Python?
- π» The Problem Enums Are Intended to Solve
- π» What Is Unit Testing in Python?
- π» What Is a Function in Python?
- π» What Is Operator Overloading in Python?
- π» What Is the Assignment Operator in Python?
- π As a Student, You Are a Lab Rat
- π» What Is an Expression in Python?
- π» What Is a Variable in Python?
Also, here are some fun links you can use to support my work.
This document was automatically rendered on 2024-11-01 using SnakeMD.