3 Commits

Author SHA1 Message Date
kdang
6738b0110b A value is anything that it is what it is, but a
name refers to something else.
For example. your name refers to you,
but you are not the same as your name,
being able to change your name
and staying as the same person.

Variables could be useful in programming when you have to
write a lot of code for a specific thing.

A function is like a variable, as it assigns a name to a block of code,
like how a variable is a name that refers to a value.

Functions can be useful when you have to run a specific code block a lot,
like when you have to draw a triangle 5 times. Instead of writing the
code block 5 times, you can define a function with the triangle code block
and you will only have to write the code block once, and will only have to
write the function 4 more times.
2025-09-22 09:30:00 -04:00
kdang
d0dc9a4b80 A value is anything that is what it is, but a name
refers to something else. For example, your name refers to you,
but you are not the same as your name,
so you can change your name and still be the same person.

Variables can be useful in programming when you are writing lots of code for a specific value.
Using variables saves time and reduces the amount of clutter when writing lots of code for
the specific value.
2025-09-19 09:43:41 -04:00
3929e3d51a Initial commit 2025-09-15 15:37:30 +00:00