Dec 30, 2025 · 7 min read · Hello aspiring programmers! I am back with a guide on conditionals, and I hope you enjoyed and found my article on lists and dictionaries helpful, and were able to do the challenge at the end (solution will be discussed in the next article). If you h...
Join discussion
Jul 11, 2025 · 2 min read · (cond ('any1 . prg1) ('any2 . prg2) ..) -> any Если любое из условий anyN не равно NIL, выполняется prgN и возвращается результат. В противном случае (все условия равны NIL) возвращается NIL. См. также nond when and if if2 Пример : (cond ((= 3 4) ...
Join discussionMay 4, 2025 · 3 min read · What are conditional expressions? When we use conditional statements like if we need to pass some conditions to check whether it's true or not and based on that information we execute some commands. For example: i=4 if i>2: print("i is greater th...
Join discussionApr 17, 2025 · 14 min read · React apps are interactive – buttons, input fields, forms, toggles — all need to respond to user actions. For that, we use event handling in React. This article explains how to handle events like onClick, onChange, etc., in simple language, with real...
Join discussion
Mar 12, 2025 · 3 min read · Hi! Today is another day to dive into learning JavaScript. Today, we're focusing on JavaScript data types, a fundamental concept every developer needs to understand. Now, before we start, I want you to grasp a simple analogy that aims to help you und...
Join discussion
Mar 3, 2025 · 29 min read · Hello again everyone! In this article I will be completing the 64-bit assembly language lab. I will also be covering what we did in class. Let’s get right into it! Steps covered in class There were a total of 4 steps that we went over in class and I ...
Join discussion