What does a coder use when they make a program from scratch?

848 views

I don’t understand what the starting point is. Do they just open a word document and start creating lines of code or is there some type of program that’s specifically used?

In: 1291

25 Answers

Anonymous 0 Comments

the starting point’s assembly. primarily based around the registers in your computers memory. i think that’s all operating systems (?).

but modern languages are all compilers. they tell all that what to do. convientently.

it’s why sometimes you see things like punch cards from back in the day. those punches registered the registers in memory. it was all just push and pop and very simplistic. almost beautifully. modern programmers can’t cram half the stuff they did into such little memory. i’m one of them. and i know a little assembly from reverse engineering games. the way that works extrapolated across all the registers is really a thing of beauty. sneaking suspicion it’s why people liked the matrix. that screen.

You are viewing 1 out of 25 answers, click here to view all answers.