// blog

Articles

// Basics
Not All Values Are the Same

The problem...
You know how to store values. But not all values are the same.
A name is not a number. A number is not true or false.
If you treat them the same way, things brea…

24 Apr 2026 1 min read files [1] comments [0] 107 views
// Basics
Text is Data Too

The problem...
You know how to label values. But not all values are numbers.
But most real programs don't just deal with numbers.
They deal with names, messages, words. Text.

24 Apr 2026 1 min read files [1] comments [0] 112 views
// Basics
Every Character Has a Number

The problem...
You have a string. You know it stores text.
But what if you need just one character from it?
Not the whole thing. Just one piece.
The idea!
Every character in …

24 Apr 2026 1 min read files [1] comments [0] 116 views
// Basics
Take a Piece of the String

The problem...
You know how to get one character from a string.
But what if you need more than one?
A word from a sentence. A piece of a code. A chunk of text.
One index isn't…

24 Apr 2026 1 min read files [1] comments [0] 125 views
// Basics
Methods — Your String’s Toolkit

The problem...
You can store text. You can access characters. You can slice.
But sometimes you need to do more.
Change the case. Remove extra spaces. Find out how long somethin…

24 Apr 2026 1 min read files [1] comments [0] 108 views
// Basics
Working With What’s Inside Strings

The problem...
You know how to transform a string.
But sometimes you don't need to change it. You need to work with what's inside.
Is a word in there? Where exactly? Can you br…

24 Apr 2026 2 min read files [1] comments [0] 112 views