typing zeros and ones in a fashion like
01101101010001110100101001
01011101001101010011101010
00110111010101010011010101
is called binary. It is simply how the computer translates your input into ways it can read.
Using DarkBASIC (or any other compiler like C or Pascal), you type much easier words into the machine, and it translates into binary.
Example: the hello world program is like this in DarkBASIC
do
print "hello world"
loop
so the machine takes that and breaks it down so you can learn to do something as easy as tpying words.
Version--DB Classic